Services not starting on boot

I recently setup a new fleet with a RPI4(64 OS). I have two containers/services set to run with a docker-compose.yml file below. Is there something I did different on this than previous fleets that is forcing my containers to not start on bootup? Even when it is booted and I reboot from the dashboard the services do not start either.

version: ‘2’
services:
backend:
build: ./backend
privileged: true
network_mode: host
restart: “no”
#restart: always
depends_on:
# - frontend
- owfs
ports:
- “5000”
- “4304”
labels:
io.balena.features.supervisor-api: ‘1’
io.balena.features.resin-api: ‘1’
io.balena.update.strategy: download-then-kill
owfs:
build: ./owfs
privileged: true
network_mode: host
restart: “no”
ports:
- “4304”
# - “80”
- “5000”
labels:
io.balena.features.kernel-modules: ‘1’
io.balena.features.supervisor-api: ‘1’
io.balena.features.resin-api: ‘1’
io.balena.update.strategy: download-then-kill

I ended up reburning a new SD card and this issue seemed to go away so I think I am all good now.

I don’t see anything in your docker-compose file that would cause that behavior, but please let us know if it happens again and post the logs (in device diagnostics).