28 lines
644 B
YAML
28 lines
644 B
YAML
|
services:
|
||
|
api:
|
||
|
build: .
|
||
|
image: mensa-upb-api:latest
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
environment:
|
||
|
- DATABASE_URL=postgres://pguser:pgpass@postgres-mensa-upb-api/postgres
|
||
|
- "RUST_LOG=none,mensa_upb_api=info"
|
||
|
- TZ=Europe/Berlin
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
|
||
|
postgres:
|
||
|
container_name: postgres-mensa-upb-api
|
||
|
image: postgres:17-alpine
|
||
|
environment:
|
||
|
- POSTGRES_USER=pguser
|
||
|
- POSTGRES_PASSWORD=pgpass
|
||
|
- POSTGRES_DB=postgres
|
||
|
volumes:
|
||
|
- db:/var/lib/postgresql/data
|
||
|
|
||
|
volumes:
|
||
|
db:
|
||
|
|
||
|
|