frogress/docker-compose.yaml

18 lines
364 B
YAML

version: '2'
services:
postgres:
image: postgres:13-alpine
environment:
POSTGRES_USER: frogress
POSTGRES_PASSWORD: frogress
ports:
- "5432:5432"
volumes:
- ./deployment/postgres/data:/var/lib/postgresql/data
frogress:
build:
context: .
dockerfile: deployment/frogress/Dockerfile
ports:
- "8000:8000"