{"id":19664767,"url":"https://github.com/jmbannon/musicbee-docker","last_synced_at":"2025-09-03T02:12:55.784Z","repository":{"id":65568605,"uuid":"594305945","full_name":"jmbannon/musicbee-docker","owner":"jmbannon","description":"Run MusicBee in Docker for browser usage","archived":false,"fork":false,"pushed_at":"2023-02-16T20:35:19.000Z","size":32959,"stargazers_count":17,"open_issues_count":4,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-28T22:41:53.832Z","etag":null,"topics":["docker","musicbee","wine"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmbannon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2023-01-28T05:46:03.000Z","updated_at":"2025-04-21T20:58:37.000Z","dependencies_parsed_at":"2025-04-28T22:52:47.129Z","dependency_job_id":null,"html_url":"https://github.com/jmbannon/musicbee-docker","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/jmbannon/musicbee-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmbannon%2Fmusicbee-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmbannon%2Fmusicbee-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmbannon%2Fmusicbee-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmbannon%2Fmusicbee-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmbannon","download_url":"https://codeload.github.com/jmbannon/musicbee-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmbannon%2Fmusicbee-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273377155,"owners_count":25094528,"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","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["docker","musicbee","wine"],"created_at":"2024-11-11T16:18:56.207Z","updated_at":"2025-09-03T02:12:55.733Z","avatar_url":"https://github.com/jmbannon.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# musicbee-docker\n## Run MusicBee in Docker for browser usage\n\n`musicbee-docker` installs and runs\n[MusicBee](https://www.getmusicbee.com/)\nvia\n[Wine](https://www.winehq.org/)\nin a\n[webtop container](https://docs.linuxserver.io/images/docker-webtop)\nrunning\n[Arch Linux](https://archlinux.org/),\nand is accessible in browser using\n[Guacamole](https://guacamole.apache.org/).\n\n![image](https://user-images.githubusercontent.com/10107080/215308172-1c91aa40-b97a-4163-8716-fd333d07bda5.png)\n\n## Installation\n#### Requirements\n- x86-64 host\n  - ARM should be possible but needs the support added\n- Decent CPU\n- Docker Compose\n- A smidge of Linux knowledge\n\n#### Docker Compose\n```yaml\nservices:\n  musicbee:\n    image: ghcr.io/jmbannon/musicbee-docker:3.4.8033-beta.4\n    container_name: musicbee\n    ports:\n      - 3000:3000\n    security_opt:\n      - seccomp:unconfined # required\n    shm_size: \"2gb\" # optional, but recommended\n    environment:\n      - PUID=1000\n      - PGID=1000\n      - TZ=America/Los_Angeles\n      - TITLE=MusicBee\n    volumes:\n      - \u003cpath/to/musicbee/config\u003e:/config\n      - \u003cpath/to/music\u003e:/music # optional\n    restart: unless-stopped\n```\n\nOnce running, you can access MusicBee at\n- http://yourhost:3000/\n\nThe app will auto-open by default. If you close it, you can reopen it by selecting `Applications -\u003e Other -\u003e MusicBee`.\n\n#### Adding your Music Library \nAssuming you mounted to `/music`, Wine will configure the `Z:/` drive to point to `/`, or root. You should see your music in `Z:/music`.\n\n## Issues and Work-Arounds\n#### Changing Fonts\nChanging Fonts within MusicBee doesn't work. You can work around this by\n1. Check the `Custom Font` checkbox for all fonts in `Preferences -\u003e Layout (1)`. Take note of the font sizes\n2. Close MusicBee\n3. Modify the settings file using the following command, which replaces all fonts with `Selawik` (recommended, looks identical to the default Segoe font in Windows).\n```bash\nsed -i 's/\u003cFontFamily\u003e\\(.*\\)\u003c\\/FontFamily\u003e/\u003cFontFamily\u003eSelawik\u003c\\/FontFamily\u003e/g' /config/MusicBee/AppData/MusicBee3Settings.ini\n```\n4. (Optional) Modify font sizes to your liking within the settings file. MusicBee must be closed when changing values.\n\n#### Saving Preferences and Settings\nSome preferences/settings are not saved to file until MusicBee is closed. It is recommended to close and reopen MusicBee once in a while to ensure your changes are properly saved in case Wine crashes.\n\n#### Updating MusicBee\nSince this is relatively new, I haven't had to update yet. A proper solution will be implemented at a later time.\n\n#### Known Issues\n- Cannot drag-and-drop tabs\n- Japanese characters do not display\n\n## Support\nKeep in mind that most issues will stem from Wine. Feel free to join our\n[Discord](https://discord.gg/qV3p8gzP)\nfor support or discussion on how we can make this app better.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmbannon%2Fmusicbee-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmbannon%2Fmusicbee-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmbannon%2Fmusicbee-docker/lists"}