-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (29 loc) · 802 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (29 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: '3'
services:
# TODO: uncomment after fixing mssql service
# web:
# platform: linux/amd64 # linux/amd64 / linux/arm64/v8
# build:
# context: ./
# dockerfile: Dockerfile.web
# ports:
# - "80:8000"
# depends_on:
# mssql:
# condition: service_started
# command: sh -c "sleep infinity"
# # command: ["python", "app.py"]
mssql:
platform: linux/amd64 # linux/amd64 / linux/arm64/v8
# image: mcr.microsoft.com/azure-sql-edge:latest
stdin_open: true
build:
context: ./
dockerfile: Dockerfile.db
restart: unless-stopped
ports:
- 1433:${SQL_PORT:-1433}
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "${MSSQL_PASSWORD:?Env variable not set}"
MSSQL_PID: Developer