In order to establish a balena service,
docker-compose.yml:
version: "2.1"
services:
  otbr-chip: 
    image: connectedhomeip/otbr:sve2
    restart: always
    network_mode: host
    privileged: true
    devices:
      - "/dev/ttyACM0:/dev/radio"
    environment:
      - NAT64=1
      - DNS64=0
      - WEB_GUI=0
    entrypoint: ["/app/etc/docker/docker_entrypoint.sh"]
    command:  [ "--radio-url", "spinel+hdlc+uart:///dev/radio?uart-baudrate=115200", "-B", "eth0" ]
    labels:
      io.balena.features.balena-socket: '1'
      io.balena.features.kernel-modules: '1'
      io.balena.features.firmware: '1'
      io.balena.features.dbus: '1'
      io.balena.features.sysfs: '1'
      io.balena.features.procfs: '1'
      io.balena.features.journal-logs: '1'
      io.balena.features.supervisor-api: '1'
      io.balena.features.balena-api: '1'
      io.balena.update.strategy: download-then-kill
      io.balena.update.handover-timeout: ''
However, I want to know if Balena can download photos from https://hub.docker.com.
I’m thinking whether the problem is that a “balena push” currently works OK but fails to start the service because it can’t actually pull the image.
We much appreciate any assistance.
Thanks