mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-09-24 22:05:20 +01:00
26 lines
938 B
YAML
26 lines
938 B
YAML
# Routes all traffic through Tor - requires NET_ADMIN capability
|
|
services:
|
|
calibre-web-automated-book-downloader-tor:
|
|
image: ghcr.io/calibrain/calibre-web-automated-book-downloader-tor:latest
|
|
environment:
|
|
FLASK_PORT: 8084
|
|
TZ: America/New_York
|
|
USING_TOR: true
|
|
# PUID: 1000
|
|
# PGID: 1000
|
|
# CWA_DB_PATH: /auth/app.db
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
ports:
|
|
- 8084:8084
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /tmp/data/calibre-web/ingest:/cwa-book-ingest
|
|
- /path/to/config:/config
|
|
# - /cwa/config/path/app.db:/auth/app.db:ro
|
|
# Download client volume - required for Prowlarr/torrent/usenet integration
|
|
# IMPORTANT: Both sides of this mount must match your download client's volume mount exactly.
|
|
# Example: if qBittorrent has "/mnt/storage/downloads:/data/torrents", use the same here:
|
|
# - /mnt/storage/downloads:/data/torrents
|