mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Add pointer to env vars for customization
This commit is contained in:
parent
8fae32c65e
commit
ce6e716d3d
1 changed files with 21 additions and 1 deletions
|
@ -97,4 +97,24 @@ services:
|
|||
|
||||
### Dockerfile
|
||||
|
||||
A `Dockerfile` is included within the GitHub repository for those who require it, although this is only suggested for those with knowledge of dockerfiles. The official Plex Meta Manager build is available on the [Dockerhub Website](https://hub.docker.com/r/meisnate12/plex-meta-manager).
|
||||
A `Dockerfile` is included within the GitHub repository for those who require it, although this is only suggested for those with knowledge of dockerfiles. The official Plex Meta Manager build is available on the [Dockerhub Website](https://hub.docker.com/r/meisnate12/plex-meta-manager).
|
||||
|
||||
## Runtime flags and ENV vars
|
||||
|
||||
Plex Meta Manager's behavior can be modified in a variety of ways using either runtime flags or environnment variables. These flags and vars are detailed [here](environmental).
|
||||
|
||||
For example, this docker-compose would create a container that runs immediately upon start (rather than waiting until 5AM), uses a particular config file, processes only overlays on only one library, and exits when done:
|
||||
```yaml
|
||||
version: "2.1"
|
||||
services:
|
||||
plex-meta-manager:
|
||||
image: meisnate12/plex-meta-manager
|
||||
container_name: plex-meta-manager
|
||||
environment:
|
||||
- PMM_RUN=true
|
||||
- PMM_CONFIG=/config/special-config.yml
|
||||
- PMM_OVERLAYS=true
|
||||
- PMM_LIBRARIES=Movies
|
||||
volumes:
|
||||
- /path/to/config:/config
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue