Created
June 9, 2020 17:32
-
-
Save jms1989/cadb4191ab06fc6b060c284d361893f3 to your computer and use it in GitHub Desktop.
docker compose file for plex and friends
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: "3" | |
services: | |
plex: | |
image: linuxserver/plex | |
container_name: plex | |
network_mode: host | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- VERSION=docker | |
- UMASK_SET=022 #optional | |
- PLEX_CLAIM= #optional | |
volumes: | |
- /var/lib/plexmediaserver:/config | |
- /media:/media | |
- /transcoder:/transcoder | |
restart: unless-stopped | |
sonarr: | |
image: linuxserver/sonarr | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
- UMASK_SET=022 #optional | |
volumes: | |
- ./sonarr/config:/config | |
- /media:/media | |
ports: | |
- 8989:8989 | |
restart: unless-stopped | |
radarr: | |
image: linuxserver/radarr | |
container_name: radarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
- UMASK_SET=022 #optional | |
volumes: | |
- ./radarr/config:/config | |
- /media:/media | |
ports: | |
- 7878:7878 | |
restart: unless-stopped | |
lidarr: | |
image: linuxserver/lidarr | |
container_name: lidarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
- UMASK_SET=022 #optional | |
volumes: | |
- ./lidarr/config:/config | |
- /media:/media | |
ports: | |
- 8686:8686 | |
restart: unless-stopped | |
ombi: | |
image: linuxserver/ombi | |
container_name: ombi | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=America/Chicago | |
#- BASE_URL=/ombi #optional | |
volumes: | |
- ./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