mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
Add matrix, plex and deluge
This commit is contained in:
parent
643ab3229a
commit
b09ac86a62
24 changed files with 390 additions and 1 deletions
24
roles/plex-docker/files/plex/docker-compose.yml
Normal file
24
roles/plex-docker/files/plex/docker-compose.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
version: '2.2'
|
||||
|
||||
networks:
|
||||
proxy-tier:
|
||||
external:
|
||||
name: nginx-proxy
|
||||
|
||||
services:
|
||||
plex:
|
||||
image: plexinc/pms-docker:plexpass
|
||||
hostname: ${PLEX_DOMAIN}
|
||||
volumes:
|
||||
- /var/lib/plex/database:/config
|
||||
- /media:/data
|
||||
- /var/lib/plex/transcode:/transcode
|
||||
- /tmp:/tmp
|
||||
environment:
|
||||
- VIRTUAL_HOST=${PLEX_DOMAIN}
|
||||
- VIRTUAL_NETWORK=nginx-proxy
|
||||
- VIRTUAL_PORT=32400
|
||||
- ADVERTISE_IP=https://plex.banditlair.com/
|
||||
networks:
|
||||
- proxy-tier
|
||||
restart: always
|
||||
Loading…
Add table
Add a link
Reference in a new issue