https://github.com/chimeracoder/docker-mediatomb
A Docker container for running Mediatomb
https://github.com/chimeracoder/docker-mediatomb
Last synced: 11 months ago
JSON representation
A Docker container for running Mediatomb
- Host: GitHub
- URL: https://github.com/chimeracoder/docker-mediatomb
- Owner: ChimeraCoder
- Created: 2014-11-22T19:03:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-03T09:01:48.000Z (over 10 years ago)
- Last Synced: 2025-01-28T13:52:10.390Z (about 1 year ago)
- Size: 201 KB
- Stars: 4
- Watchers: 5
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
mediatomb
===========
A Docker container for running [Mediatomb](http://mediatomb.cc/), a free and open source UPnP media server.
````sh
$ sudo docker run --rm --net="host" -v /dev/urandom:/dev/urandom -v /dev/random:/dev/random -p 50500:50500 chimeracoder/mediatomb
````
Of course, you will need to mount the directories containing the media you wish to share. For example:
````sh
$ sudo docker run --rm --net="host" -v /dev/urandom:/dev/urandom -v /dev/random:/dev/random -v ~/Video:/media/Video -p 50500:50500 chimeracoder/mediatomb
````
Note that the `--net="host"` flag is required to enable service discovery as per the UPnP protocol. For more information on Docker networking, please read the [Network Configuration documentation](https://docs.docker.com/articles/networking/).
### License
MediaTomb is free software provided under [Version 2 of the GNU Public License](http://mediatomb.cc/pages/documentation#id2861434)
This Docker image is provided under Version 2 of the GNU Public License.