Compose-Examples/examples/jackett/docker-compose.yml

18 lines
454 B
YAML
Raw Normal View History

2023-02-28 18:18:29 +00:00
version: "2.1"
2023-03-01 10:05:51 +00:00
2023-02-28 18:18:29 +00:00
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=1000
- PGID=1000
2023-03-01 10:05:51 +00:00
- TZ=Europe/Berlin
2023-02-28 18:18:29 +00:00
- 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
2023-03-01 10:05:51 +00:00
restart: unless-stopped