Last active
December 25, 2022 20:47
-
-
Save mickaelandrieu/2f8c5feba1accaa2c7f9dad18d7b41ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
plex: | |
image: linuxserver/plex:latest | |
container_name: plex | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- VERSION=docker | |
volumes: | |
- ~/docker-services/plex/config:/config | |
- /mnt:/mnt | |
ports: | |
- 32400:32400 | |
restart: unless-stopped | |
transmission: | |
image: linuxserver/transmission | |
container_name: transmission | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Paris | |
- TRANSMISSION_WEB_HOME=/combustion-release/ #optional | |
volumes: | |
- ~/docker-services/transmission/config:/config | |
- /mnt/media/torrents:/mnt/media/torrents | |
ports: | |
- 9091:9091 | |
- 49153:49153 | |
- 49153:49153/udp | |
restart: unless-stopped | |
jackett: | |
image: linuxserver/jackett | |
container_name: jackett | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Paris | |
volumes: | |
- ~/docker-services/jackett/config:/config | |
- /mnt/media/torrents/completed:/downloads | |
ports: | |
- 9117:9117 | |
restart: unless-stopped | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Paris | |
- UMASK_SET=022 #optional | |
volumes: | |
- ~/docker-services/sonarr/config:/config | |
- /mnt/media:/mnt/media | |
ports: | |
- 8989:8989 | |
restart: unless-stopped | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Paris | |
volumes: | |
- ~/docker-services/radarr/config:/config | |
- /mnt/media:/mnt/media | |
ports: | |
- 7878:7878 | |
restart: unless-stopped | |
ombi: | |
image: linuxserver/ombi | |
container_name: ombi | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Paris | |
- BASE_URL=/ombi #optional | |
volumes: | |
- ~/docker-services/ombi/config:/config | |
ports: | |
- 3579:3579 | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment