Sign inSign up

alandoyle/mediaelch

By alandoyle

Updated 3 months ago

A simple docker container for MediaElch available over HTTP or VNC. Patched to fix issue TMDB issue.

Image
0

376

alandoyle/mediaelch repository overview

Docker container for MediaElch

Docker Image Size Docker Pulls Source

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 logoMediaElch

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.


Docker

Available on DockerHub

docker pull alandoyle/mediaelch

Usage

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"

Ports
PortDescription
8080/tcpNOVNC HTTP Port
5900/tcpVNC Port

Volumes
PathDescription
/configpath for MediaElch configuration files
/mediapath for MediaElch media files
Contributions

Contributions are welcome! Feel free to submit issues or pull requests to improve this project.

Tag summary

Content type

Image

Digest

sha256:5228706ca

Size

239.9 MB

Last updated

3 months ago

docker pull alandoyle/mediaelch