{"id":16540351,"url":"https://github.com/sameersbn/docker-rygel","last_synced_at":"2025-10-30T10:18:36.799Z","repository":{"id":18344125,"uuid":"21523837","full_name":"sameersbn/docker-rygel","owner":"sameersbn","description":"Dockerfile to build a Rygel DLNA/uPNP server docker image.","archived":false,"fork":false,"pushed_at":"2015-12-13T08:28:38.000Z","size":22,"stargazers_count":7,"open_issues_count":1,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-25T06:59:17.448Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sameersbn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-05T16:39:05.000Z","updated_at":"2022-10-15T17:23:07.000Z","dependencies_parsed_at":"2022-08-25T12:11:03.569Z","dependency_job_id":null,"html_url":"https://github.com/sameersbn/docker-rygel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-rygel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-rygel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-rygel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameersbn%2Fdocker-rygel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sameersbn","download_url":"https://codeload.github.com/sameersbn/docker-rygel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241774237,"owners_count":20018236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T18:52:15.767Z","updated_at":"2025-10-30T10:18:31.735Z","avatar_url":"https://github.com/sameersbn.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/rygel/status \"Docker Repository on Quay.io\")](https://quay.io/repository/sameersbn/rygel)\n\n\u003e **NOTICE**:\n\u003e\n\u003e Active maintenance of the image has been halted. Your [contributions](#contributing) are welcome.\n\n# Table of Contents\n- [Introduction](#introduction)\n- [Contributing](#contributing)\n- [Installation](#installation)\n- [Quick Start](#quick-start)\n- [Cache Store](#cache-store)\n- [Shell Access](#shell-access)\n- [Upgrading](#upgrading)\n\n# Introduction\n\nDockerfile to build a Rygel DLNA/uPNP server docker image.\n\n# Contributing\n\nIf you find this image useful here's how you can help:\n\n- Send a Pull Request with your awesome new features and bug fixes\n- Help new users with [Issues](https://github.com/sameersbn/docker-rygel/issues) they may encounter\n- Support the development of this image with a [donation](http://www.damagehead.com/donate/)\n\n# Installation\n\nAutomated builds of the image are available on [Dockerhub](https://hub.docker.com/r/sameersbn/rygel) and is the recommended method of installation.\n\n\u003e **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/rygel)\n\n```\ndocker pull sameersbn/rygel:latest\n```\n\nAlternately you can build the image yourself.\n\n```\ndocker build -t sameersbn/rygel github.com/sameersbn/docker-rygel\n```\n\n# Quick Start\n\nRun the image\n\n```\ndocker run --name=rygel -it --rm --net=host \\\n-v /path/to/music:/music \\\n-v /path/to/videos:/videos \\\n-v /path/to/pictures:/pictures \\\nsameersbn/rygel:latest\n```\n\nThis will start the rygel server and you should now be able to browse the content on DLNA/uPNP compatible devices.\n\n*P.S. You should run the image with host networking so that the server can be discovered over mDNS*\n\n# Cache Store\nYou should mount a volume at `/.cache` for the cache.\n\n```\ndocker run --name=rygel --net=host -d \\\n-v /path/to/music:/music -v /path/to/videos:/videos \\\n-v /path/to/pictures:/pictures -v /opt/rygel:/.cache \\\nsameersbn/rygel:latest\n```\n\n# Shell Access\n\nFor debugging and maintenance purposes you may want access the containers shell. If you are using docker version `1.3.0` or higher you can access a running containers shell using `docker exec` command.\n\n```bash\ndocker exec -it rygel bash\n```\n\nIf you are using an older version of docker, you can use the [nsenter](http://man7.org/linux/man-pages/man1/nsenter.1.html) linux tool (part of the util-linux package) to access the container shell.\n\nSome linux distros (e.g. ubuntu) use older versions of the util-linux which do not include the `nsenter` tool. To get around this @jpetazzo has created a nice docker image that allows you to install the `nsenter` utility and a helper script named `docker-enter` on these distros.\n\nTo install `nsenter` execute the following command on your host,\n\n```bash\ndocker run --rm -v /usr/local/bin:/target jpetazzo/nsenter\n```\n\nNow you can access the container shell using the command\n\n```bash\nsudo docker-enter rygel\n```\n\nFor more information refer https://github.com/jpetazzo/nsenter\n\n# Upgrading\nTo upgrade to newer releases, simply follow this 3 step upgrade procedure.\n\n- **Step 1**: Update the docker image.\n\n```\ndocker pull sameersbn/rygel:latest\n```\n\n- **Step 1**: Stop the currently running image\n\n```\ndocker stop rygel\n```\n\n- **Step 3**: Start the image\n\n```\ndocker run --name=rygel --net=host -d [OPTIONS] sameersbn/rygel:latest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameersbn%2Fdocker-rygel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsameersbn%2Fdocker-rygel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameersbn%2Fdocker-rygel/lists"}