# ---------------------------------------------------------------- required # Postgres. With the bundled compose file the host is the service name. DATABASE_URL="postgresql://askarr:askarr@postgres:5432/askarr" # Signs back-office sessions. Generate one and keep it: # openssl rand -base64 32 # Changing it signs everyone out. BETTER_AUTH_SECRET="" # Where Askarr is reachable FROM THE OUTSIDE — not from inside the container. # Radarr and Sonarr call back to this address, so "localhost" only works if # they run on the same host. Read at run time, never baked into the image. APP_URL="https://askarr.example.com" # ---------------------------------------------------------------- optional # Seeds a brand-new install so Askarr can boot with no UI visit. Once a token # is saved in the back office, the database wins and this is ignored. TELEGRAM_BOT_TOKEN="" # Defaults to APP_URL. Set it only if the back office is reached on a # different address than the one Radarr and Sonarr use. # BETTER_AUTH_URL="https://askarr.example.com" # Timestamps in the back office and in bot messages. TZ="UTC" # Host port for the web container. # WEB_PORT=3000 # Pin a release instead of tracking latest. # ASKARR_TAG=v0.1.0 # Postgres credentials, if you change them from the defaults above. # POSTGRES_USER=askarr # POSTGRES_PASSWORD=askarr # POSTGRES_DB=askarr