Skip to content

Instantly share code, notes, and snippets.

@bjerkins
Created May 10, 2018 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjerkins/b60a474b072bc29fed2496370ebef230 to your computer and use it in GitHub Desktop.
Save bjerkins/b60a474b072bc29fed2496370ebef230 to your computer and use it in GitHub Desktop.
Plex server + Filebot
version: '2'
services:
plex:
container_name: plex
image: plexinc/pms-docker
restart: unless-stopped
ports:
- 32400:32400/tcp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
environment:
- TZ=Europe/Copenhagen
- PLEX_CLAIM=put-your-claim-here
- ADVERTISE_IP=http://localhost:32400/
hostname: Megatron
volumes:
- ./data/database:/config
- ./data/transcode/temp:/transcode
- ./data/media:/data
filebot:
container_name: filebot
image: rednoah/filebot:node
ports:
- 5452:5452
volumes_from:
- plex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment