balance_wheel/docker-compose.yml
2023-03-26 14:40:47 +07:00

28 lines
522 B
YAML

version: '3.8'
services:
app:
image: nuark/balance_wheel:latest
environment:
- PGHOST='db'
- PGUSER=postgres
- PGDATABASE=postgres
- PGPASSWORD=postgres
- PGPORT=5432
ports:
- 8301:3000
depends_on:
- db
db:
image: postgres:latest
restart: unless-stopped
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
volumes:
postgres-data: