29 lines
593 B
YAML
29 lines
593 B
YAML
version: "3.9"
|
|
services:
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
environment:
|
|
- POSTGRES_USER=root
|
|
- POSTGRES_PASSWORD=secret
|
|
- POSTGRES_DB=df
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- data-volume:/var/lib/postgresql/data
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
- "9090:9090"
|
|
volumes:
|
|
- ./files:/app/files/:Z
|
|
environment:
|
|
- DB_SOURCE=postgresql://root:secret@postgres:5432/df?sslmode=disable
|
|
depends_on:
|
|
- postgres
|
|
command: [ "/app/main" ]
|
|
|
|
volumes:
|
|
data-volume: |