Last active
September 3, 2020 20:38
-
-
Save avbelyaev/53233dca475b39b4f7e5eaf0556327ca to your computer and use it in GitHub Desktop.
Plex
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' | |
# works great with AWS free tier | |
services: | |
plex: | |
container_name: plex | |
image: plexinc/pms-docker | |
restart: unless-stopped | |
environment: | |
- TZ=Europe/London | |
- PLEX_CLAIM=<claim from https://www.plex.tv/claim> | |
- VERSION=docker | |
network_mode: host | |
volumes: | |
- ./db-config:/config | |
- ./transcode:/transcode | |
- ./media-data:/data | |
#ports: | |
# - 80:32400 | |
# - 32400:32400 32400 is not open by security group |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment