All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 13s
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
###############################################################
|
|
# Networks
|
|
###############################################################
|
|
networks:
|
|
proxy-net:
|
|
name: proxy-net
|
|
external: true
|
|
|
|
###############################################################
|
|
# Services
|
|
###############################################################
|
|
services:
|
|
prowlarr:
|
|
image: lscr.io/linuxserver/prowlarr:2.3.5.5327-ls142
|
|
container_name: prowlarr
|
|
mem_limit: 2048m
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- /mnt/appdata/prowlarr/data:/config
|
|
ports:
|
|
- 9696:9696
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy-net
|
|
prowlarr_outpost:
|
|
image: ghcr.io/goauthentik/proxy:2026.2.2
|
|
container_name: prowlarr_outpost
|
|
networks:
|
|
- proxy-net
|
|
environment:
|
|
AUTHENTIK_HOST: http://authentik_server:9000
|
|
AUTHENTIK_HOST_BROWSER: https://sso.castaldifamily.com
|
|
AUTHENTIK_TOKEN: 42FCcV9gmTfixaak77xW4eAZIMUUJ0u5vGsxvumfo1Lav5DIyLViDz4xqinE
|
|
AUTHENTIK_INSECURE: "true"
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.prowlarr-proxy.entrypoints=websecure"
|
|
- "traefik.http.routers.prowlarr-proxy.rule=Host(`prowlarr.castaldifamily.com`)"
|
|
- "traefik.http.routers.prowlarr-proxy.tls=true"
|
|
- "traefik.http.routers.prowlarr-proxy.tls.certresolver=cloudflare"
|
|
- "traefik.http.services.prowlarr-proxy.loadbalancer.server.port=9000" |