0

I am trying to create a balena service as:

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: ''

But I am wondering whether balena can pull images from https://hub.docker.com?

At the moment a "balena push" works fine but it fails to start the service, I am wondering if the issue is that it can't actually pull the image?

Any help is much appreciated

Thanks

maverick
  • 31
  • 4

0 Answers0