mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-28 23:31:47 +02:00
25 lines
581 B
YAML
25 lines
581 B
YAML
version: '3.8'
|
||
|
||
services:
|
||
app:
|
||
image: aspnet-app
|
||
ports:
|
||
- "80:80"
|
||
environment:
|
||
- ACCEPT_EULA=Y
|
||
- SA_PASSWORD=YourStrong!Passw0rd
|
||
|
||
mssql:
|
||
image: mcr.microsoft.com/mssql/server:2019-latest
|
||
restart: always
|
||
environment:
|
||
- ACCEPT_EULA=Y
|
||
- SA_PASSWORD=YourStrong!Passw0rd
|
||
ports:
|
||
- "1433:1433"
|
||
healthcheck:
|
||
test: ["CMD-SHELL", "/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P YourStrong!Passw0rd -Q 'SELECT 1' || exit 1"]
|
||
interval: 10s
|
||
retries: 10
|
||
start_period: 10s
|
||
timeout: 5s
|