Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 700 Bytes

01-usage.md

File metadata and controls

26 lines (17 loc) · 700 Bytes

How to use blocks

You can find the blocks that are available to use on balenaHub. Each one will have an image reference like this:

browser reference

You can use this image reference in two ways; in your docker-compose.yml file, or in a dockerfile:

Docker-Compose

The image reference is added under services:

version: '2.1'

services:
  browser:
    image: bhcr.io/balenablocks/browser-aarch64

Dockerfile

The image reference is used in the FROM directive:

FROM bhcr.io/balenablocks/browser-aarch64 as base