SIP_GoldBees_Backend/docker-compose.yml
2026-02-01 13:57:30 +00:00

19 lines
341 B
YAML

version: "3.9"
services:
postgres:
image: postgres:15
container_name: trading_postgres
restart: unless-stopped
environment:
POSTGRES_USER: trader
POSTGRES_PASSWORD: traderpass
POSTGRES_DB: trading_db
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: