mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-28 23:31:47 +02:00
Arm64 and check Compose v2 support (#177)
add support of arm64 architecture for the following samples: * aspnet-mssql * elasticsearch-logstash-kibana * nginx-aspnet-mysql * nginx-flask-mysql * nginx-golang-mysql * react-java-mysql * sparkjava-mysql * wordpress-mysql * react-express-mysql * react-express-mongodb Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
parent
d48e8350ea
commit
4bba832f88
23 changed files with 3155 additions and 5800 deletions
|
@ -7,7 +7,10 @@ services:
|
|||
environment:
|
||||
ACCEPT_EULA: "Y"
|
||||
SA_PASSWORD: example_123
|
||||
image: mcr.microsoft.com/mssql/server
|
||||
# mssql server image isn't available for arm64 architecture, so we use azure-sql instead
|
||||
image: mcr.microsoft.com/azure-sql-edge:1.0.4
|
||||
# If you really want to use MS SQL Server, uncomment the following line
|
||||
#image: mcr.microsoft.com/mssql/server
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P example_123 -Q 'SELECT 1' || exit 1"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue