bw-hspc-contest-env/web/docker/dev-postgres/docker-compose.yml

19 lines
408 B
YAML
Raw Normal View History

2024-02-17 14:02:30 -05:00
version: '3'
services:
db:
2024-02-26 13:52:55 -05:00
image: 'postgres:latest'
2024-02-17 14:02:30 -05:00
container_name: 'bwcontest-postgres'
restart: unless-stopped
environment:
POSTGRES_DB: 'bwcontest'
POSTGRES_USER: 'bwcontest'
2024-02-26 13:52:55 -05:00
POSTGRES_PASSWORD: 'pass123'
2024-02-17 14:02:30 -05:00
TZ: America/New_York
ports:
2024-02-26 13:52:55 -05:00
- '5433:5432'
2024-02-17 14:02:30 -05:00
volumes:
- bwcontest-postgres-data:/var/lib/postgresql/data
volumes:
2024-02-26 13:52:55 -05:00
bwcontest-postgres-data: