Files
nas-compose/media.docker-compose.yml
2023-01-05 07:57:31 +01:00

103 lines
2.1 KiB
YAML

name: Collectors
services:
dummy:
image: alpine
entrypoint: sleep infinity
volumes:
- books:/books/
- comics:/comics/
plex:
image: plexinc/pms-docker:plexpass
environment:
PLEX_UID: ${NASCOMPOSE_UID?}
PLEX_GID: ${NASCOMPOSE_GID?}
PLEX_CLAIM: ${NASCOMPOSE_PLEX_CLAIM}
ports:
- 32400:32400
networks:
- macvlan
- default
- traefik
volumes:
- plex_config:/config/
- /tmp/plex/:/transcode/
- tv:/data/tv/
- movies:/data/movies/
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.services.plex.loadbalancer.server.port: 32400 #TODO: Check if needed
traefik.http.services.plex.loadbalancer.server.scheme: https #TODO: Check if needed
plaxt:
image: xanderstrike/goplaxt
profiles: [plaxt]
user: ${NASCOMPOSE_UID?}:${NASCOMPOSE_GID?}
environment:
TRAKT_ID: '' #TODO Define properly
TRAKT_SECRET: '' #TODO Define properly
networks:
- default
- traefik
volumes:
- plaxt_keystore:/app/keystore/
restart: unless-stopped
labels:
traefik.enable: true
# TODO:
# Calibre-web
# Komga/Kavita
networks:
macvlan:
external: true
traefik:
external: true
volumes:
books:
name: books
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_MEDIA?}/books/
comics:
name: comics
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_MEDIA?}/comics/
movies:
name: movies
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_MEDIA?}/movies/
tv:
name: tv
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_MEDIA?}/tv/
# TODO: Manage recycle bin properly...
recycle_bin:
name: recycle_bin
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_MEDIA?}/recycle_bin/
plex_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/plex/config/
plaxt_keystore:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/plaxt/keystore/