19 lines
408 B
YAML
19 lines
408 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: 'postgres:latest'
|
|
container_name: 'bwcontest-postgres'
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: 'bwcontest'
|
|
POSTGRES_USER: 'bwcontest'
|
|
POSTGRES_PASSWORD: 'pass123'
|
|
TZ: America/New_York
|
|
ports:
|
|
- '5433:5432'
|
|
volumes:
|
|
- bwcontest-postgres-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
bwcontest-postgres-data:
|