-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
prowlarr.yml
29 lines (27 loc) · 827 Bytes
/
prowlarr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Change the following value to match your setup:
# change-me-1 is the domain name for your Prowlarr instance
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
volumes:
- prowlarr-data:/config
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- dokploy-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.prowlarr.entrypoints=websecure"
- "traefik.http.routers.prowlarr.tls.certResolver=letsencrypt"
- "traefik.http.routers.prowlarr.rule=Host(`change-me-1`)"
- "traefik.http.services.prowlarr.loadbalancer.server.port=9696"
restart: unless-stopped
networks:
dokploy-network:
external: true
volumes:
prowlarr-data: