mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
17 lines
868 B
Bash
17 lines
868 B
Bash
|
# [MediaElch](https://github.com/Komet/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. Using the nfo
|
||
|
# generator, MediaElch can be used with other MediaCenters as well.
|
||
|
|
||
|
. ./.env
|
||
|
docker run -d \
|
||
|
--name=mediaelch \
|
||
|
-e PUID=${PUID:-1024} `# for UserID` \
|
||
|
-e PGID=${PGID:-100} `# for GroupID` \
|
||
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
||
|
-p 3000:3000 `# MediaElch desktop gui.` \
|
||
|
-p 3001:3001 `# MediaElch desktop gui HTTPS.` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/mediaelch/config:/config `# Users home directory in the container, stores program settings and files.` \
|
||
|
--restart unless-stopped \
|
||
|
ghcr.io/linuxserver/mediaelch
|