name: db-migration services: azurite: image: mcr.microsoft.com/azure-storage/azurite:3.35.0 container_name: azurite restart: unless-stopped ports: - 8880:10000 - 8881:10001 - 8882:10002 volumes: - ./data/azurite:/data command: 'azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --location /data --skipApiVersionCheck' profiles: - storage - target mssql: image: mcr.microsoft.com/mssql/server:2022-latest restart: unless-stopped environment: ACCEPT_EULA: Y MSSQL_SA_PASSWORD: SecurePassword123 MSSQL_PID: Developer MSSQL_MEMORY_LIMIT_MB: 8192 ports: - 8883:1433 volumes: - ./data/mssql:/var/opt/mssql profiles: - mssql - source - db postgres: image: postgis/postgis:16-3.4 restart: unless-stopped environment: POSTGRES_DB: test_db POSTGRES_USER: postgres POSTGRES_PASSWORD: SecurePassword123 ports: - 8884:5432 volumes: - ./data/postgres:/var/lib/postgresql/data profiles: - postgres - target - db shm_size: '1gb'