rc-migration-tests/ef-migration/infrastructure/docker-compose-infra.yml
2025-02-03 22:12:40 +00:00

29 lines
660 B
YAML

version: '3.8'
services:
sqlserver:
build:
context: . # Changed from ./sql-server to . to include the whole directory
dockerfile: sql-server/Dockerfile # Updated path to Dockerfile
container_name: sqlserver_lightweight
ports:
- "1433:1433"
environment:
- ACCEPT_EULA=Y
- MSSQL_PID=Express
- SA_PASSWORD=YourStrong@Passw0rd
volumes:
- sqlserver_data:/var/opt/mssql
deploy:
resources:
limits:
memory: 1G
cpus: '1.0'
reservations:
memory: 512M
cpus: '0.5'
restart: unless-stopped
volumes:
sqlserver_data:
driver: local