services:
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
ports:
- 1433:1433
environment:
- MSSQL_SA_PASSWORD=My@Test@Password1
command:
postgres:
image: postgres:13
ports:
- "5432:5432"
environment:
POSTGRES_DB: test
POSTGRES_USER: test
POSTGRES_PASSWORD: test
dev:
build: docker/dev
volumes:
- .:/workspace:cached
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
# Allows accessing dbs through port forwarding. dev container behaves like host for networking
network_mode: host