Skip to main content

How To Work With Custom Containers in Bacalhau

stars - badge-generator

Bacalhau operates by executing jobs within containers. This example shows you how to build and use a custom docker container.

TD;LR

Running Custom Containers in Bacalhau

Prerequisite

  • To get started, you need to install the Bacalhau client, see more information here
  • This example requires Docker. If you don't have Docker installed, you can install it from here. Docker commands will not work on hosted notebooks like Google Colab, but the Bacalhau commands will.

Running Containers in Bacalhau

You're probably used to running docker commands to run a container.

%%bash
docker run docker/whalesay cowsay sup old fashioned container run

Bacalhau uses a syntax that is similar to docker and you can use the same containers. The main difference is that input and output data is passed to the container via IPFS, to enable planetary scale. In this example, it doesn't make too much difference except that we need to download the stdout.

The --wait flag tells Bacalhau to wait for the job to finish before returning. This is useful in interactive sessions like this, but you would normally allow jobs to complete in the background and use the list command to check on their status.

Another difference is that by default Bacalhau overwrites the default entry point for the container so you have to pass all shell commands as arguments to the run command after the -- flag.

Running a Bacalhau Job

%%bash --out job_id
bacalhau docker run --wait --id-only docker/whalesay -- bash -c 'cowsay hello web3 uber-run'

When a job is submitted, Bacalhau prints out the related job_id. We store that in an environment variable so that we can reuse it later on.

You can download your job results directly by using bacalhau get. Alternatively, you can choose to create a directory to store your results. In the command below, we created a directory and downloaded our job output to be stored in that directory.

%%bash
rm -rf results && mkdir -p results
bacalhau get ${JOB_ID} --output-dir results

Viewing your job output

%%bash
cat ./results/stdout

Building Your Own Custom Container For Bacalhau

To use your own custom container, you must publish the container to a container registry that is accessible from the Bacalhau network. At this time, only public container registries are supported.

To demonstrate this, you will develop and build a simple custom container that comes from an old docker example. I remember seeing cowsay at a Docker conference about a decade ago. I think it's about time we brought it back to life and distribute it across the Bacalhau network.

%%writefile cod.cow
$the_cow = <<"EOC";
$thoughts
$thoughts
,,,,_
┌Φ▓╬▓╬▓▓▓W @▓▓▒,
╠▓╬▓╬╣╬╬▓╬▓▓ ╔╣╬╬▓╬╣▓,
__,┌╓═╠╬╠╬╬╬Ñ╬╬╬Ñ╬╬¼,╣╬╬▓╬╬▓╬▓▓▓┐ ╔W_ ,φ▓▓
,«@▒╠╠╠╠╩╚╙╙╩Ü╚╚╚╚╩╙╙╚╠╩╚╚╟▓▒╠╠╫╣╬╬╫╬╣▓, _φ╬▓╬╬▓, ,φ╣▓▓╬╬
_,φÆ╩╬╩╙╚╩░╙╙░░╩`=░╙╚»»╦░=╓╙Ü1R░│░╚Ü░╙╙╚╠╠╠╣╣╬≡Φ╬▀╬╣╬╬▓▓▓_ ╓▄▓▓▓▓▓▓╬▌
_,φ╬Ñ╩▌▐█[▒░░░░R░░▀░`,_`!R`````╙`-'╚Ü░░Ü░░░░░░░│││░╚╚╙╚╩╩╩╣Ñ╩╠▒▒╩╩▀▓▓╣▓▓╬╠▌
'╚╩Ü╙│░░╙Ö▒Ü░░░H░░R ▒¥╣╣@@@▓▓▓ := '` `░``````````````````````````]▓▓▓╬╬╠H
'¬═▄ `\░╙Ü░╠DjK` Å»»╙╣▓▓▓▓╬Ñ -»` -` ` ,;╓▄╔╗∞ ~▓▓▓▀▓▓╬╬╬▌
'^^^` _╒Γ `╙▀▓▓╨ _, ⁿD╣▓╬╣▓╬▓╜ ╙╬▓▓╬╬▓▓
```└ _╓▄@▓▓▓╜ `╝╬▓▓╙ ²╣╬▓▓
%φ▄╓_ ~#▓╠▓▒╬▓╬▓▓^ ` ╙╙
`╣▓▓▓ ╠╬▓╬▓╬▀`
╚▓▌ '╨▀╜
EOC

Next, the Dockerfile adds the script and sets the entry point.

%%writefile Dockerfile
FROM debian:stretch
RUN apt-get update && apt-get install -y cowsay
# "cowsay" installs to /usr/games
ENV PATH $PATH:/usr/games
RUN echo '#!/bin/bash\ncowsay "${@:1}"' > /usr/bin/codsay && \
chmod +x /usr/bin/codsay
COPY cod.cow /usr/share/cowsay/cows/default.cow

Now let's build and test the container locally.

%%bash
docker build -t ghcr.io/bacalhau-project/examples/codsay:latest . 2> /dev/null
%%bash
docker run --rm ghcr.io/bacalhau-project/examples/codsay:latest codsay I like swimming in data

Once your container is working as expected then you should push it to a public container registry. In this example, I'm pushing to Github's container registry, but we'll skip the step below because you probably don't have permission.Remember that the Bacalhau nodes expect your container to have a linux/amd64 architecture.

%%bash
# docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/bacalhau-project/examples/codsay:latest .

Running Your Custom Container on Bacalhau

Now we're ready to submit a Bacalhau job using your custom container. This code runs a job, downloads the results, and prints the stdout.

tip

The bacalhau docker run command strips the default entry point, so don't forget to run your entry point in the command line arguments.

%%bash --out job_id
bacalhau docker run \
--wait \
--id-only \
ghcr.io/bacalhau-project/examples/codsay:v1.0.0 \
-- bash -c 'codsay Look at all this data'

When a job is submitted, Bacalhau prints out the related job_id. We store that in an environment variable so that we can reuse it later on.

Download your job results directly by using bacalhau get command.

%%bash
rm -rf results && mkdir -p results
bacalhau get ${JOB_ID} --output-dir results

View your job output

%%bash
cat ./results/stdout