mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
44 lines
1.8 KiB
YAML
44 lines
1.8 KiB
YAML
services:
|
|
comet:
|
|
container_name: comet
|
|
image: g0ldyy/comet:rewrite
|
|
restart: unless-stopped
|
|
expose:
|
|
- 2020
|
|
environment:
|
|
- DASHBOARD_ADMIN_PASSWORD=${COMET_ADMIN_PASSWORD}
|
|
- DEBRID_PROXY_URL=http://warp:1080
|
|
- INDEXER_MANAGER_TYPE=prowlarr # or jackett
|
|
- INDEXER_MANAGER_URL=http://prowlarr:9696 # or http://jackett:9117
|
|
- INDEXER_MANAGER_API_KEY=${PROWLARR_API_KEY:-} # or ${JACKETT_API_KEY:-}
|
|
- INDEXER_MANAGER_INDEXERS=${COMET_INDEXERS:-[]} # comma separated list of indexer ids # for jackett, get the names from https://github.com/Jackett/Jackett/tree/master/src/Jackett.Common/Definitions - for prowlarr you can write them like on the web dashboard
|
|
- SCRAPE_ZILEAN=True
|
|
- ZILEAN_URL=http://zilean:8181 # or https://zilean.elfhosted.com if not hosting zilean locally
|
|
- ZILEAN_TAKE_FIRST=500
|
|
- SCRAPE_TORRENTIO=False
|
|
- SCRAPE_MEDIAFUSION=False
|
|
- MEDIAFUSION_URL=http://mediafusion:8000 # or https://mediafusion.elfhosted.com if not hosting mediafusion locally
|
|
- STREMTHRU_URL=http://stremthru:8080 # or https://stremthru.13377001.xyz if not hosting stremthru locally
|
|
- DOWNLOAD_TORRENT_FILES=False
|
|
- REMOVE_ADULT_CONTENT=True
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.comet.rule=Host(`${COMET_HOSTNAME}`)"
|
|
- "traefik.http.routers.comet.entrypoints=websecure"
|
|
- "traefik.http.routers.comet.tls.certresolver=myresolver"
|
|
- "flame.type=app"
|
|
- "flame.name=Comet"
|
|
- "flame.url=https://${COMET_HOSTNAME}"
|
|
volumes:
|
|
- ./data/comet:/data
|
|
healthcheck:
|
|
test: wget -qO- http://127.0.0.1:2020/health
|
|
interval: 1m
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 10s
|
|
networks:
|
|
- addon_network
|
|
networks:
|
|
addon_network:
|
|
external: true |