# Copy to .env and fill in. .env is gitignored — the real registry hostname # must not end up in the repository. # Image coordinates. FOODSTER_REPO carries no tag. FOODSTER_REPO=registry.example.com/you/foodster FOODSTER_TAG=latest # Shared household password. The app will not start without it. FOODSTER_PASSWORD=changeme # Host port to publish on. FOODSTER_PORT=8080 # 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. FOODSTER_UID=1000 FOODSTER_GID=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