mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-28 06:21:14 +00:00
16 lines
454 B
YAML
16 lines
454 B
YAML
|
version: "2.1"
|
||
|
services:
|
||
|
jackett:
|
||
|
image: lscr.io/linuxserver/jackett:latest
|
||
|
container_name: jackett
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=America/Chicago
|
||
|
- 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
|