DenyTranDFW's picture
Add Dockerfile, docker-compose, setup script, SQL stored procedures, schema docs, and indexes
af136d8 verified
raw
history blame contribute delete
557 Bytes
services:
mssql:
build: .
container_name: ${CONTAINER_NAME:-mssql-sec-fsnds}
ports:
- "${HOST_PORT:-1434}:1433"
volumes:
# named volume for /var/opt/mssql (system DBs, logs, etc.)
- SecDbFts:/var/opt/mssql
# host bind mount for the user database files
- ${HOST_DATA_DIR}:/var/opt/mssql/data
# optional staging/insert bind mounts - safe to remove if not used
- ./staging:/data/staging:ro
- ./insert:/data/insert:ro
env_file:
- .env
restart: unless-stopped
volumes:
SecDbFts: