X11rdp Version of Mediathekview
Using this container allows you to run Mediathekview as a service and control it via webbrowser like Firefox or Chrome. The X11rdp feature is inherited from https://github.com/jlesage/docker-baseimage-gui.
- Download Dockerfile or clone the repository.
- Run
docker build .
to create the docker image. - Wait until build process is finished.
The Github repository is automatically build by Docker Hub. You can pull it from Docker Hub:
docker pull conrad784/mediathekview-webinterface:latest
Some older versions can also be acquired by using e.g.
docker pull conrad784/mediathekview-webinterface:13.3.0-3
For additional configuration options, have a look at the available environment-variables. For basic usage, just use
docker run -it -p 127.0.0.1:5800:5800 --rm \
-v $HOME/.mediathek3:/config:rw \
-v <path to your media files>:/output:rw \
conrad784/mediathekview-webinterface:latest
Make your changes, then build new version:
docker build --rm -t mymediathek -f Dockerfile .
Run the container with some testing environment:
docker run --name mymedia -p 127.0.0.1:5800:5800 --rm -it -e USER_ID=99 -e GROUP_ID=99 -e KEEP_APP_RUNNING=1 -v /tmp/mediathek_config:/config:rw -v /tmp/mediathek_downloads:/output:rw mymediathek:latest
attach to running container and debug:
docker exec -it mymedia bash