You can find the blocks that are available to use on balenaHub. Each one will have an image reference
like this:
You can use this image reference
in two ways; in your docker-compose.yml
file, or in a dockerfile
:
The image reference
is added under services:
version: '2.1'
services:
browser:
image: bhcr.io/balenablocks/browser-aarch64
The image reference
is used in the FROM
directive:
FROM bhcr.io/balenablocks/browser-aarch64 as base