1
0
Fork 0
get-installer-bootstrap/compose.yaml
2026-05-05 09:32:06 +02:00

29 lines
582 B
YAML

services:
app:
build:
context: .
dockerfile: docker/Dockerfile
target: app
environment:
APP_ENV: prod
APP_DEBUG: "0"
APP_SECRET: ${APP_SECRET:-change-me}
DATABASE_URL: sqlite:////app/var/data/app.db
APP_CACHE_DIR: /app/var/bootstrap-cache
volumes:
- app-data:/app/var/data
- app-cache:/app/var/bootstrap-cache
nginx:
build:
context: .
dockerfile: docker/Dockerfile
target: web
depends_on:
- app
ports:
- "${HTTP_PORT:-8080}:80"
volumes:
app-data:
app-cache: