Files
ipwa/compose.yml
T
slasherss f8bb37e12f Squashed 'backend/' content from commit fa83223
git-subtree-dir: backend
git-subtree-split: fa832234607d359848516c9334f2eec45f64969e
2026-04-27 22:44:05 +02:00

24 lines
395 B
YAML

services:
api:
build: .
ports:
- "12230:8080"
environment:
- DOMAIN=CHANGE_ME
- SECRET=CHANGE_ME
depends_on:
- mongodb
volumes:
- ./config/:/app/config/
mongodb:
image: mongo:latest
restart: unless-stopped
expose:
- 27017
ports:
- "127.0.0.1:27017:27017"
volumes:
- mongodb:/data/db
volumes:
mongodb: