Create a container, run PMM right now, then exit and delete the container:
docker run --rm -it -v “REMOVED_FOR_SPACE:/config:rw" meisnate12/plex-meta-manager --run
Create a container, wait until 5AM to run PMM, then go to sleep until tomorrow at 5AM. If the container exits, delete it:
docker run --rm -it -v “REMOVED_FOR_SPACE:/config:rw" meisnate12/plex-meta-manager
Create a container, wait until 9AM to run PMM, then go to sleep until tomorrow at 9AM. If the container exits, delete it:
docker run --rm -it -v “REMOVED_FOR_SPACE:/config:rw" meisnate12/plex-meta-manager --time 09:00
All of those will leave the container running in the terminal window, so if you close the terminal window the container will die. If you don't want that to happen, run the container in the background:
Create a container that runs in the background, wait until 9AM to run PMM, then go to sleep until tomorrow at 9AM. If the container exits, delete it:
docker run -d --rm -it -v “REMOVED_FOR_SPACE:/config:rw" meisnate12/plex-meta-manager --time 09:00
Create a container that runs in the background, wait until 9AM to run PMM, then go to sleep until tomorrow at 9AM. DON'T delete the container on exit:
docker run -d -it -v “REMOVED_FOR_SPACE:/config:rw" meisnate12/plex-meta-manager --time 09:00