Hi - I’m running a YOCTO build of resin-os for raspberrypi3 using the barys script. I’m trying to get my own supervisor image loaded and automatically started. The first part works great - the image makes it to the sdcard image, but no container is created.
This is how I’m calling the barys script:
./barys \
--machine raspberrypi3 \
--shared-downloads "/home/richquackenbush/boondocks-downloads" \
--shared-sstate "/home/richquackenbush/boondocks-sstate" \
--supervisor-tag "v1.0.1" \
--remove-build \
--development-image \
--additional-variable "SUPERVISOR_REPOSITORY_armv7ve=rquackenbush/boondocks" \
--additional-variable "SUPERVISOR_TAG=v1.0.1" \
--additional-variable "TARGET_REPOSITORY=rquackenbush/boondocks" \
--additional-variable "TARGET_TAG=v1.0.1"
The VERSION
file in the ${DEPLOY}
directory has the tag of my supervisor:
v1.0.1
How do I get my custom container to be automatically created?