- Built on my Base GUI Image
- Tiny Media Manager is a media management tool written in Java/Swing. It is written to provide metadata for the Kodi Media Center (formerly known as XBMC), MediaPortal and Plex media server.
docker run \
--name=docker-tinymediamanager \
-p 5700:5700 \
-v </path/to/appdata/config>:/config \
-v </path/to/tv/shows>:/tv \
-v </path/to/movies>:/movies \
--restart unless-stopped \
christopher102994/docker-tinymediamanager:latest
Container specific parameters passed at runtime. The format is <external>:<internal>
(e.g. -p 443:22
maps the container's port 22 to the host's port 443).
Parameter | Function |
---|---|
-p 5700 | The web encrypted UI port. |
-v /config | The directory where the application will store configuration information. |
-v /tv | The path to your tv shows. |
-v /movies | The path to your movies. |
-e USERNAME | The Username you wish to run as. (Optional) |
-e GROUPNAME | The Groupname you wish to run as. (Optional) |
-e PUID | The UID you wish to run and save files as. (Optional) |
-e PGID | The GID you wish to run and save files as. (Optional) |
-e VNC_PASSWORD | Password for the VNC session. (Optional) |
-e DISPLAY_WIDTH | VNC Server's display width. (Optional) |
-e DISPLAY_HEIGHT | VNC Server's displat height. (Optional) |
The admin interface is available at http://<ip>:<port>/
Access the mounted files within the web interface at /tv
and /movies