26 lines
662 B
YAML
26 lines
662 B
YAML
networks:
|
|
traefik:
|
|
external: true
|
|
|
|
services:
|
|
{{ role_name }}:
|
|
container_name: "{{ role_name }}"
|
|
image: fallenbagel/jellyseerr:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
- traefik
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- "TZ={{ timezone }}"
|
|
volumes:
|
|
- "{{ data_dir }}/{{ role_name }}:/app/config"
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
|
|
start_period: 20s
|
|
timeout: 3s
|
|
interval: 15s
|
|
retries: 3
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.http.routers.{{ role_name }}.rule: "Host(`requests.{{ personal_domain }}`)"
|