mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[Docs] Add "combining Commands or Variables" admonition
This commit is contained in:
parent
61d31dbffe
commit
2b4d0803fb
1 changed files with 16 additions and 0 deletions
|
@ -30,6 +30,22 @@ those two things in two different fields, or some other way. The examples below
|
|||
environment variable in a script or a `docker run` command. Things like Portainer or a NAS Docker UI will have
|
||||
different ways to specify these things.
|
||||
|
||||
???+ warning "Combining Commands or Variables"
|
||||
|
||||
![img.png](img.png) Some Commands or Variables can be combined in a single run, this is mainly beneficial when you want to run a specific command and have it run immediately rather than waiting until the next scheduled run.
|
||||
|
||||
For example, if I want to run [Collections Only](#collections-only) to only run Collection Files, and [Run Immediately](#run) to skip waiting until my next scheduled run, I can use both commands at the same time:
|
||||
|
||||
!!! example
|
||||
=== "Local Environment"
|
||||
```
|
||||
python plex_meta_manager.py --collections-only --run
|
||||
```
|
||||
=== "Docker Environment"
|
||||
```
|
||||
docker run -it -v "X:\Media\Plex Meta Manager\config:/config:rw" meisnate12/plex-meta-manager --collections-only --run
|
||||
```
|
||||
|
||||
??? blank "Config Location `-c`/`--config` `PMM_CONFIG`<a class="headerlink" href="#config" title="Permanent link">¶</a>"
|
||||
|
||||
<div id="config" />Specify the location of the configuration YAML file. Will default to `config/config.yml` when not
|
||||
|
|
Loading…
Reference in a new issue