--- services: timetracker: image: registry.kucharczyk.xyz/timetracker build: context: . dockerfile: Dockerfile container_name: timetracker environment: - DEBUG=false - TZ=Europe/Prague # APP_URL drives ALLOWED_HOSTS and CSRF_TRUSTED_ORIGINS unless overridden. # Behind your own reverse proxy you may also set ALLOWED_HOSTS=* directly. - APP_URL=https://tracker.kucharczyk.xyz user: "1000" # volumes: # - "db:/home/timetracker/app/src/timetracker/db.sqlite3" ports: - "8000:8000" restart: unless-stopped