services: app: build: context: . args: VERSION: ${VERSION:-dev} environment: # Only used to create the first account on an empty database; inert after that. ADMIN_EMAIL: ${ADMIN_EMAIL:-} ADMIN_PASSWORD: ${ADMIN_PASSWORD:-} ADMIN_NAME: ${ADMIN_NAME:-Ylläpito} ADDR: ":8080" SECURE_COOKIES: ${SECURE_COOKIES:-true} PUBLIC_URL: ${PUBLIC_URL:-} # The SQLite file sits in here beside the audio, so this one mount is the whole backup. volumes: - ./storage:/storage ports: - "8080:8080" restart: unless-stopped