backend/docker-compose.yml

15 lines
302 B
YAML
Raw Normal View History

2022-08-26 17:00:34 +03:00
version: "3"
services:
postgres:
image: "postgres"
container_name: "postgres"
environment:
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=db
- POSTGRES_USER=debug
- POSTGRES_PASSWORD=debug
ports:
- "5432:5432"
network_mode: "host"