When doing balena push -m <fleet>
I get the following error:
[Success] Successfully uploaded images
[Error] Some services failed to build:
[Error] Service: audio
[Error] Error: (HTTP code 500) server error - error parsing HTTP 404 response body: invalid character 'S' looking for beginning of value: "Sorry, page not found."
[Info] Built on x64_01
[Error] Not deploying release.
Remote build failed
It happens all the way at the end (even after the message Successfully uploaded images
.
What is wrong suddenly ? This did not happen two days ago…
My audio
service in docker-compose.yml looks like this:
volumes:
xserver-volume:
resin-data:
audio:
image: <bh.cr/my-block/audio>
privileged: true
ports:
- 4317:4317 # Only required if using PA over TCP socket
labels:
io.balena.features.dbus: "1"
io.balena.features.kernel-modules: "1"
volume
- xserver-volume:/tmp/.X11-uni
environment:
- DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket
- AUDIO_OUTPUT=alsa_output.hda-intel.hdmi-stereo
- DISPLAY=:0
xserver:
image: balenablocks/xserver
restart: always
privileged: true
labels:
io.balena.features.dbus: "1"
volumes:
- xserver-volume:/tmp/.X11-unix
I’m on FROM balenalib/%%BALENA_MACHINE_NAME%%-node:16-run
My device type = Generic_x86_64 (GPT)
Any idea what to do ?