-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
executable file
·29 lines (28 loc) · 985 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3.7"
services:
###################################
## Plex-playlists
###################################
plex-metadata-exporter:
build: .
container_name: plex-metadata-exporter
restart: unless-stopped
volumes:
- /path/to/plex/library:/media
environment:
# address with port
- PLEX_ADDRESS=https://IP:PORT
# Plex-token from
- X_PLEX_TOKEN=sOmEpL3XT0k3n1234
# absolute path to the root folder - in this case absolute in the docker volume
- PLEX_ROOT_FOLDER=/media
# the file ending naming scheme
- FILE_ENDING_PATTERN=meta_data_naming_scheme
# when the job should run
- CRON_STRING=*/15 * * * *
# if you want to run run the whole script only once, override CMD with "once"
# command: once
# if you want to clean up all meta_data files, ovverride CMD with "cleanup"
# command: cleanup
# default command specified in the Dockerfile
# command: cron