# Copy to .env and fill in. .env is gitignored — the real registry hostname # must not end up in the repository. # Image coordinates. REPO carries no tag. REPO=registry.example.com/you/foodster TAG=latest # Shared household password. The app will not start without it. PASSWORD=changeme # Hostname Traefik routes to. Kept here rather than in compose.yaml so no # infrastructure detail is committed. HOST=foodster.example.com # Anything other than prod is written into the browser tab title, so a dev # instance open beside the real one can be told apart. ENV=prod # The database lives in ./data, bind-mounted into the container. These must # match whoever owns that directory on the host, or the container cannot # write to it. `id -u` and `id -g` will tell you. # # Named PUID/PGID because UID is read-only in bash and a plain UID here would # be quietly replaced by the invoking shell's own. PUID=1000 PGID=1000 # Used for every calendar-day calculation. Set it in development too: under # UTC the date rolls over three hours late, which is exactly when dinner # gets logged. TZ=Europe/Helsinki