edec0d0ca4
* feat(pairdrop): change config to support local domain * feat(paperless-ngx): change config to support local domain * feat(peppermint): change config to support local domain * feat(photoprism): change config to support local domain * feat(pihole): change config to support local domain * feat(plausible): change config to support local domain * feat(plex): change config to support local domain * feat(podfetch): change config to support local domain * feat(portainer): change config to support local domain * feat(privatebin): change config to support local domain * feat(prowlarr): change config to support local domain * feat(proxitok): change config to support local domain * feat(qbittorrent): change config to support local domain * feat(radarr): change config to support local domain * feat(readarr): change config to support local domain * feat(resilio-sync): change config to support local domain * feat(romm): change config to support local domain * feat(rss): change config to support local domain * feat(sabnzbd): change config to support local domain * feat(searxng): change config to support local domain * feat(send): change config to support local domain * feat(simplex-smp): change config to support local domain * feat(sonarr): change config to support local domain * feat(syncthing): change config to support local domain * feat(tasks-md): change config to support local domain * feat(tautulli): change config to support local domain * feat(teddit): change config to support local domain * feat(transmission): change config to support local domain * feat(tubearchivist): change config to support local domain * feat(umami): change config to support local domain * feat(uptime-kuma): change config to support local domain * feat(vaultwarden): change config to support local domain * feat(vikunja): change config to support local domain * feat(wg-easy): change config to support local domain * feat(wikijs): change config to support local domain * feat(wizarr): change config to support local domain * feat(your-spotify): change config to support local domain * chore: labels formatting issues
48 lines
2.0 KiB
YAML
48 lines
2.0 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
podfetch:
|
|
container_name: podfetch
|
|
image: samuel19982/podfetch:latest
|
|
ports:
|
|
- ${APP_PORT}:8000
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/podfetch-db:/app/db
|
|
- ${ROOT_FOLDER_HOST}/media/data/podcasts:/app/podcasts
|
|
environment:
|
|
- BASIC_AUTH=true
|
|
- USERNAME=${PODFETCH_USERNAME}
|
|
- PASSWORD=${PODFETCH_PASSWORD}
|
|
- POLLING_INTERVAL=60
|
|
- SERVER_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
|
|
- PODINDEX_API_KEY="${PODFETCH_PODINDEX_API_KEY}"
|
|
- PODINDEX_API_SECRET="${PODFETCH_PODINDEX_API_SECRET}"
|
|
restart: unless-stopped
|
|
networks:
|
|
- tipi_main_network
|
|
labels:
|
|
# Main
|
|
traefik.enable: true
|
|
traefik.http.middlewares.podfetch-web-redirect.redirectscheme.scheme: https
|
|
traefik.http.services.podfetch.loadbalancer.server.port: 8000
|
|
# Web
|
|
traefik.http.routers.podfetch-insecure.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.podfetch-insecure.entrypoints: web
|
|
traefik.http.routers.podfetch-insecure.service: podfetch
|
|
traefik.http.routers.podfetch-insecure.middlewares: podfetch-web-redirect
|
|
# Websecure
|
|
traefik.http.routers.podfetch.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.podfetch.entrypoints: websecure
|
|
traefik.http.routers.podfetch.service: podfetch
|
|
traefik.http.routers.podfetch.tls.certresolver: myresolver
|
|
# Local domain
|
|
traefik.http.routers.podfetch-local-insecure.rule: Host(`podfetch.${LOCAL_DOMAIN}`)
|
|
traefik.http.routers.podfetch-local-insecure.entrypoints: web
|
|
traefik.http.routers.podfetch-local-insecure.service: podfetch
|
|
traefik.http.routers.podfetch-local-insecure.middlewares: podfetch-web-redirect
|
|
# Local domain secure
|
|
traefik.http.routers.podfetch-local.rule: Host(`podfetch.${LOCAL_DOMAIN}`)
|
|
traefik.http.routers.podfetch-local.entrypoints: websecure
|
|
traefik.http.routers.podfetch-local.service: podfetch
|
|
traefik.http.routers.podfetch-local.tls: true
|