A simple docker container for MediaElch available over HTTP or VNC. Patched to fix issue TMDB issue.
378
This is a Docker container for MediaElch.
The graphical user interface (GUI) of the application can be accessed through a modern web browser, requiring no installation or configuration on the client.
MediaElch is a MediaManager for Kodi. Information about Movies, TV Shows, Concerts and Music are stored as NFO files. Fanarts are downloaded automatically from fanart.tv.
Available on DockerHub
docker pull alandoyle/mediaelch
docker run --name=mediaelch \
-d --init \
-v <MY_CONFIG_PATH>:/config \
-v <MY_MEDIA_PATH>:/media \
-p 80:8080/tcp \
-p 5900:5900/tcp \
alandoyle/mediaelch:latest
Docker compose example:
---
services:
mediaelch:
image: alandoyle/mediaelch:latest
container_name: mediaelch
restart: unless-stopped
init: true
ports:
- 80:8080 # If you want to go mediaelch through a browser
- 5900:5900 # If you want to use a VNC client instead of the browser
volumes:
- /Storage/Incoming:/media
- ./config:/config
environment:
- RESOLUTION=1600x900 # Change resolution (default: 1366x768)
# - VNC_PASSWORD=8charpwd
restart: always
shm_size: "1gb"
| Port | Description |
|---|---|
8080/tcp | NOVNC HTTP Port |
5900/tcp | VNC Port |
| Path | Description |
|---|---|
/config | path for MediaElch configuration files |
/media | path for MediaElch media files |
Contributions are welcome! Feel free to submit issues or pull requests to improve this project.
Content type
Image
Digest
sha256:5228706ca…
Size
239.9 MB
Last updated
3 months ago
docker pull alandoyle/mediaelch