45 lines
949 B
YAML
45 lines
949 B
YAML
version: '3'
|
|
|
|
services:
|
|
jackett:
|
|
container_name: jackett
|
|
image: lscr.io/linuxserver/jackett:latest
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
- UMASK=${UMASK}
|
|
- AUTO_UPDATE=true
|
|
ports:
|
|
- 9117:9117
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/jackett/config:/config
|
|
- ${MEDIA_DIR}/downloads/torrents:/torrents
|
|
|
|
jellyfin:
|
|
image: lscr.io/linuxserver/jellyfin:nightly
|
|
container_name: jellyfin
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/jellyfin/config:/config
|
|
ports:
|
|
- 8096:8096
|
|
restart: always
|
|
|
|
prowlarr:
|
|
image: lscr.io/linuxserver/prowlarr:latest
|
|
container_name: prowlarr
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/prowlarr/config:/config
|
|
ports:
|
|
- 9696:9696
|
|
restart: always
|