Files
Kreatyw/docker-compose.yml
2026-01-06 21:18:38 +01:00

14 lines
279 B
YAML

services:
kreatyw:
build: .
ports:
# Map host port 5432 to container port 8000
- "${PORT:-5432}:8000"
volumes:
- ./sources:/app/sources:ro
- ./models:/app/models
environment:
- PORT=${PORT:-8000}
stdin_open: true
tty: true