{"id":22320188,"url":"https://github.com/giof71/roon-bridge-docker","last_synced_at":"2025-06-22T10:35:33.377Z","repository":{"id":149355130,"uuid":"619814486","full_name":"GioF71/roon-bridge-docker","owner":"GioF71","description":"Run roon-bridge using docker (also on Volumio and Moode Audio)","archived":false,"fork":false,"pushed_at":"2024-10-30T09:08:58.000Z","size":36,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-30T10:18:18.601Z","etag":null,"topics":["arm64","armv7","docker","docker-image","moode","moodeaudio","osmc","roon","roon-bridge","volumio","x86-64"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/GioF71.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-27T13:38:12.000Z","updated_at":"2024-10-30T09:06:13.000Z","dependencies_parsed_at":"2024-01-02T10:38:21.085Z","dependency_job_id":"3af3e7fb-069d-4c92-8214-36f5f8a38cab","html_url":"https://github.com/GioF71/roon-bridge-docker","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GioF71%2Froon-bridge-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GioF71%2Froon-bridge-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GioF71%2Froon-bridge-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GioF71%2Froon-bridge-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GioF71","download_url":"https://codeload.github.com/GioF71/roon-bridge-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228017867,"owners_count":17856842,"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":["arm64","armv7","docker","docker-image","moode","moodeaudio","osmc","roon","roon-bridge","volumio","x86-64"],"created_at":"2024-12-04T00:12:44.489Z","updated_at":"2024-12-04T00:12:44.995Z","avatar_url":"https://github.com/GioF71.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Roon Bridge on Docker\n\n## Links\n\nRepo|URL\n:---|:---\nSource code|[GitHub](https://github.com/GioF71/roon-bridge-docker)\nDocker images|[Docker Hub](https://hub.docker.com/r/giof71/roon-bridge)\n\n## Available Archs on Docker Hub\n\n- linux/amd64\n- linux/arm/v7\n- linux/arm64/v8\n\n### Install Docker\n\nDocker is a prerequisite. On debian and derived distributions (this includes Raspberry Pi OS, DietPi, Moode Audio, Volumio, OSMC), we can install the necessary packages using the following commands:\n\n```text\nsudo apt-get update\nsudo apt-get install -y docker.io docker-compose\nsudo usermod -a -G docker $USER\n```\n\nThe last command adds the current user to the docker group. This is not mandatory; if you choose to skip this step, you might need to execute docker-compose commands by prepending `sudo`.  \n\n## Build docker image\n\nUse the included script to build the image:\n\n`./build.sh`\n\n## Environment Variables\n\nVariable|Description\n:---|:---\nBASE_URL|If set, files are downloaded from that URL instead of from the roon servers\nFORCE_ARCH|If set, we are using the value instead of `uname -m` when selecting the binary file to use/download. This can be useful for example with LibreElec or OSMC on the Pi4, which have a 64bit kernel (`aarch64`) but a 32bit docker version: in this situation, then container starts but then the binary does not work. Setting this variable to `armv7l` solved the issue for me. Possible values are `aarch64`, `armv7l` and `x86_64`.\n\n## Volumes\n\nVolume|Description\n:---|:---\n/files|If set, we try and see if the volume contains the files that would instead be downloaded. Setting this volume can speed up the startup phase slightly.\n\n## Example\n\nYou can use the published images or the one you build by yourself. See the repo [here](https://hub.docker.com/r/giof71/roon-bridge).  \n\n### Docker Run\n\n```text\ndocker run \\\n    -d \\\n    --name roon-bridge \\\n    --restart always \\\n    --network host \\\n    --device /dev/snd \\\n    --label com.centurylinklabs.watchtower.enable=false \\\n    giof71/roon-bridge:latest\n```\n\n### Docker Compose\n\n```text\n---\nversion: \"3\"\n\nservices:\n  roon-bridge:\n    container_name: roon-bridge\n    image: giof71/roon-bridge:latest\n    network_mode: host\n    devices:\n      - /dev/snd:/dev/snd\n    labels:\n      - com.centurylinklabs.watchtower.enable=false\n    restart: always\n```\n\n### Disabling watchtower\n\n[Watchtower](https://containrrr.dev/watchtower/) is an excellent tool, but it can disrupt your listening experience if an image update can trigger a container recreation.  \nI am therefore keeping watchtower disabled in my examples.  \n\n## Installation on Moode Audio or Volumio\n\nIt is possible to use this solution for easy installation of Roon Bridge on [Moode Audio](https://moodeaudio.org/) and [Volumio](https://volumio.com/).  \nIt is required to have a ssh connection to the Moode/Volumio audio box. In order to enable ssh on Volumio, refer to [this](https://developers.volumio.com/SSH%20Connection) page.  \nThose two platforms do not ship docker out of the box (unsurprisingly), so docker installation is required. See [Docker Installation](#install-docker) earlier in this page.  \n\n## Changelog\n\nDate|Description\n:---|:---\n2023-09-28|Switch to debian stable by default (see [#20](https://github.com/GioF71/roon-bridge-docker/issues/20))\n2023-03-29|Allow `BASE_URL` as alternate source for downloads\n2023-03-29|Removed `/roon` mountpoint for ease of use\n2023-03-29|Add volume `/files` for providing the necessary binary files (avoid downloads)\n2023-03-27|Added `FORCE_ARCH` variable\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiof71%2Froon-bridge-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgiof71%2Froon-bridge-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiof71%2Froon-bridge-docker/lists"}