Compose-Examples/examples/jackett/docker-compose.yml
2023-03-01 11:05:51 +01:00

18 lines
454 B
YAML

version: "2.1"
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- AUTO_UPDATE=true #optional
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/downloads:/downloads
ports:
- 9117:9117
restart: unless-stopped