mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-04-19 21:39:17 -04:00
Hey, made the tweaks we discussed, plus a couple related fixes :) - Removed APP_ENV entirely. All dev-specific functionality is enabled via `DEBUG: true` env var - Set secure cookie handling to false by default, added to the readme to enable if exclusively using HTTPS connection - Fixed healthcheck potentially not working with auth enabled - Removed APP_ENV from docker compose files and made sure app.db lines are included in all versions. APP_ENV in people's existing composes should get ignored entirely and will be put on the default env, so no issues when updating.
17 lines
453 B
YAML
17 lines
453 B
YAML
services:
|
|
calibre-web-automated-book-downloader-dev:
|
|
extends:
|
|
file: ./docker-compose.yml
|
|
service: calibre-web-automated-book-downloader
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: cwa-bd
|
|
environment:
|
|
DEBUG: true
|
|
USE_DOH: true
|
|
CUSTOM_DNS: cloudflare
|
|
volumes:
|
|
- /tmp/cwa-book-downloader:/tmp/cwa-book-downloader
|
|
- /tmp/cwa-book-downloader-log:/var/log/cwa-book-downloader
|