Hi Guys,
First of all I don’t have a lot of experience with Docker, so perhaps my issue is fairly simple. Yet, I did not find anyone online with a solution.
MAIN GOAL
I want to run on my raspberry pi BalenaSound(for now 1 device), and Hoobs(Homebridge Out Of the Box). I tried with homebridge as well but without success.
I can install correctly and working the BalenaSound, but it seams Hoobs is stuck on start saying : “Installing service 'hoobs sha256XXXXXX”
The main questions are : Is my docker-compose ok? will this be enought to download the image and install it?
Do I need a start.sh file ? if so how do i know it is running?
version: ‘2’
volumes:
spotifycache:
hoobscache:services:
audio:
build: ./core/audio
privileged: true
labels:
io.balena.features.dbus: 1
ports:
- 4317:4317sound-supervisor:
build: ./core/sound-supervisor
network_mode: host
ports:
- 3000:3000
labels:
io.balena.features.supervisor-api: 1multiroom-server:
build: ./core/multiroom/server
restart: on-failure
ports:
- 1704:1704
- 1705:1705
- 1780:1780multiroom-client:
build: ./core/multiroom/client
restart: on-failurebluetooth:
build: ./plugins/bluetooth
restart: on-failure
network_mode: host
cap_add:
- NET_ADMIN
labels:
io.balena.features.dbus: 1airplay:
build: ./plugins/airplay
restart: on-failure
network_mode: host
privileged: true
labels:
io.balena.features.dbus: 1spotify:
build: ./plugins/spotify
restart: on-failure
privileged: true
network_mode: host
volumes:
- spotifycache:/var/cache/raspotifyupnp:
build: ./plugins/upnp
restart: on-failure
network_mode: host
ports:
- 49494:49494hoobs:
image: hoobs/hoobs
container_name: hoobs
environment:
- PUID=1001
- PGID=1001
- TZ=Europe/Amsterdam
volumes:
- hoobscache:/opt/appdata/hoobs:/hoobs
ports:
- 8080:8080
- 8181:8181
- 51826:51826
restart: always
Thanks guys.