Skip to content

Instantly share code, notes, and snippets.

@basmith7
Last active March 5, 2023 21:51
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save basmith7/981bd6c5bb54cde5833ede1cbdf1c59f to your computer and use it in GitHub Desktop.
Save basmith7/981bd6c5bb54cde5833ede1cbdf1c59f to your computer and use it in GitHub Desktop.
version: '3'
services:
plex:
image: plexinc/pms-docker:beta
container_name: plex
restart: always
network_mode: host
volumes:
- $PWD/plex/config:/config
- $PWD/plex/transcode:/transcode
- /media:/media
environment:
- TZ=America/Phoenix
- PLEX_UID=1000
- PLEX_GUID=1000
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
restart: always
ports:
- 8080:8080
volumes:
- $PWD/qbittorrent:/config
- /media:/media
environment:
- TZ=America/Phoenix
- PGID=1000
- PUID=1000
- WEBUI_PORT=8080
jackett:
image: linuxserver/jackett
container_name: jackett
restart: always
ports:
- 9117:9117
volumes:
- $PWD/jackett:/config
- /media:/media
environment:
- TZ=America/Phoenix
- PGID=1000
- PUID=1000
radarr:
image: linuxserver/radarr
container_name: radarr
restart: always
ports:
- 7878:7878
volumes:
- $PWD/radarr:/config
- /media:/media
environment:
- PUID=1000
- PGID=1000
- TZ=America/Phoenix
sonarr:
image: linuxserver/sonarr
container_name: sonarr
restart: always
ports:
- 8989:8989
volumes:
- $PWD/sonarr:/config
- /media:/media
environment:
- PUID=1000
- PGID=1000
- TZ=America/Phoenix
tautulli:
image: shiggins8/tautulli
container_name: tautulli
restart: always
ports:
- 8181:8181
volumes:
- $PWD/plexpy:/config
- $PWD/plex:/plex
environment:
- PGID=1000
- PUID=1000
- TZ=America/Phoenix
ombi:
image: lsiodev/ombi-preview
container_name: ombi
restart: always
ports:
- 3579:3579
volumes:
- $PWD/ombi3:/config
environment:
- PGID=1000
- PUID=1000
- TZ=America/Phoenix
glances:
image: docker.io/nicolargo/glances
container_name: glances
restart: always
network_mode: host
pid: host
ports:
- 61208:61208
volumes:
- /media:/media
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- GLANCES_OPT=-w
- PGID=1000
- PUID=1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment