Commands below will start a demo environment consisting of HAF Block Explorer and HAF with 5 million blocks.
curl https://gtg.openhive.network/get/blockchain/block_log.5M -o docker/blockchain/block_log
cd docker
docker compose up -dYou can stop the app with docker compose stop or docker compose down (the latter removes the containers) and remove all application data with docker compose down -v.
Balancer Tracker consists of two Docker images: psql client for database setup and block processing, and a PostgREST image for running the API.
Psql client image is a simple Ubuntu-based image containing PostgreSQL client. It is designed to run scripts that are bind-mounted inside it. There is no need to rebuild this image unless to change the version of Ubuntu.
No custom PostgREST image is neeed for the API. The application has been tested to run with both official postgrest/postgrest image as well as Debian-based bitnami/postgrest variant. The latter can be used to build a custom image with healthcheck enabled - see the dev Compose override file for an example on how to do this on the fly.
There are several targets defined in the Bakefile
- default - alias for full
- full - builds image containing HAF BE scripts, but without HAFAH and Balance Tracker ones
- ci-runner - builds CI runner
There are also some other targets meant to be used by CI only: full-ci, ci-runner-ci.
To build a given target run docker buildx bake [target-name]. If no target name is provided the default target will be built.
On Linux, you can also use convenience scripts.
Command scripts/ci-helpers/build_docker_image.sh [src_dir] --target=[target-name] can build any of the targets. If no target name is provided the default target will be built. Run scripts/ci-helpers/build_docker_image.sh --help to see all the options.
There's also scripts/ci-helpers/build_instance.sh, which can be used to build the full target. Running scripts/ci-helpers/build_instance.sh [image_tag] [src_dir] [registry_url] is functionally identical to running scripts/build_docker_image.sh [src_dir] --registry=[registry_url] --target=full --tag=[image_tag].
Using build_docker_image.sh or build_instance.sh scripts to build the full target will result in a Docker image with properly set labels. Otherwise most of the labels will be set to [unknown].
Finally scripts/ci-helpers/build_ci-runner_image.sh [src_dir] will build ci-runner image. Run scripts/ci-helpers/build_ci-runner_image.sh --help to see all available options.
The Composefile contains profiles that add additional containers to the setup:
- swagger - adds the Swagger UI running on port 8080
- db-tools - adds PgHero running on port 2080 and PgAdmin running on port 1080
You can enable the profiles by adding the profile option to docker compose command, eg. docker compose --profile swagger up -d. To enable multiple profiles specify the option multiple times (like with --file option in Configuring containers by using override files section).
The variables below are can be used to configure the Compose files.
| Name | Description | Default value (some of those valuse are overridden in default .env) |
|---|---|---|
| HAF_REGISTRY | Registry containing HAF image | registry.gitlab.syncad.com/hive/haf/instance |
| HAF_VERSION | HAF version to use | e988b4e0 |
| HAF_COMMAND | HAF command to execute | --shared-file-size=1G --plugin database_api --replay --stop-at-block=5000000 |
| BACKEND_REGISTRY | Registry containing HAF Block Explorer image | registry.gitlab.syncad.com/hive/haf_block_explorer |
| BACKEND_VERSION | HAF Block Explorer image to use | latest |
| POSTGREST_REGISTRY | Registry containing PostgREST image | postgrest/postgrest |
| POSTGREST_VERSION | PostgREST version to use | latest |
| SWAGGER_REGISTRY | Registry containing Swagger UI image (swagger profile only) | swaggerapi/swagger-ui |
| SWAGGER_VERSION | Swagger UI version to use (swagger profile only) | latest |
| PGHERO_REGISTRY | Registry containing PgHero image (db-tools profile only) | ankane/pghero |
| PGHERO_VERSION | PgHero version to use (db-tools profile only) | latest |
| PGADMIN_REGISTRY | Registry containing PgAdmin image (db-tools profile only) | dpage/pgadmin4 |
| PGADMIN_VERSION | PgAdmin version to use (db-tools profile only) | latest |
| HAF_DATA_DIRECTORY | HAF data directory path on host (used by dev.yml override) | none |
| HAF_SHM_DIRECTORY | HAF shared memory directory path on host (used by [dev.yml](overrides/dev.yml override)) | none |
| SETUP_UID | UID to be used to set up Balance Tracker and HAfAH | root |
| PGHERO_USERNAME | PgHero username (db-tools profile only) | link |
| PGHERO_PASSWORD | PgHero password (db-tools profile only) | hyrule |
| PGADMIN_DEFAULT_EMAIL | PgAdmin default email address (db-tools profile only) | admin@hafblockexplorer.internal |
| PGADMIN_DEFAULT_PASSWORD | PgAdmin default password (db-tools profile only) | admin |
| SETUP_OPTIONS | Additional setup options (like --blocksearch-indexes=true/false, if true db sets up with block-search indexes (approx. 11h) | none |
You can override them by editing the .env file or by creating your own env file and instructing Docker Compose to use it instead of the default, eg.
# Create a local.env file which overrides registries used to pull HAF and PostgREST images and HAF version as well as HAF command
{
echo "HAF_REGISTRY=registry.gitlab.syncad.com/hive/haf/instance"
echo "HAF_VERSION=instance-v1.27.5-rc0"
echo "POSTGREST_REGISTRY=bitnami/postgrest"
echo "HAF_COMMAND=--shared-file-size=1G --plugin database_api --replay --stop-at-block=5000000"
} > local.env
# Start the containers
docker compose --env-file local.env up --detachIf you wish to create your own .env file, you may want to use .env as a template to avoid errors.
You can configure HAF by changing HAF_COMMAND value or overriding the entrypoint using Compose override files (more on those below).
Docker Compose allows for changing the container configuration by using override files.
The easiest way to use the functionality is to create a docker-compose.override.yml and start the app as specified in the Quickstart, eg.
curl https://gtg.openhive.network/get/blockchain/block_log.5M -o docker/blockchain/block_log
cd docker
# Create an override file that makes the haf-nettwork attachable
cat <<EOF > docker-compose.override.yml
networks:
haf-network:
name: haf-network
attachable: true
EOF
# Optionally verify that the override is reckognized by having Docker Compose display the merged configuration
docker compose config
docker compose up --detachThere is one example override files provide: dev.yml.
The file makes several changes to the configuration described in docker-compose.yml:
- adds variable
PGCTLTIMEOUTset to 600 to HAF's environment - changes value of variable
PG_ACCESSin HAF's environment tohost all all all trust\n - exposes port 5432 on HAF's container
- changes the location of named volumes used by HAF container on from the host's default to the directories specified by the environment variables mentioned in Environment variables section above. This makes the named volumes behave like bind mounts - which means that command
docker compose down -vwill not remove HAF's data. It needs to be done that manually.
The second one provides various overrides that can be useful for development, like static IP for the HAF container, healthcheck for the PostGREST container (not enabled by default, since it requires building a custom PostgREST image) or making the haf-network attachable.
If you want to use that file, you need to provide Docker Compose a list of YAML files to use, eg.
docker compose --file docker-compose.yml --file overrides/dev.yml up --detachAnd, of course, you can combine all of these ways of configuring the containers, eg.
curl https://gtg.openhive.network/get/blockchain/block_log.5M -o docker/blockchain/block_log
cd docker
# Create a local.env file which overrides registries used to pull HAF and PostgREST images
# and configures the bind mount directories as well as overides HAF command
{
echo "HAF_REGISTRY=registry.gitlab.syncad.com/hive/haf/instance"
echo "HAF_VERSION=instance-v1.27.5-rc0"
echo "POSTGREST_REGISTRY=bitnami/postgrest"
echo "SETUP_UID=root"
echo "HAF_DATA_DIRECTORY=/srv/haf/data"
echo "HAF_SHM_DIRECTORY=/srv/haf/shm"
echo "HAF_COMMAND=--shared-file-size=1G --plugin database_api --replay --stop-at-block=5000000"
} > local.env
# Create an override file that makes the haf-nettwork attachable
cat <<EOF > docker-compose.override.yml
networks:
haf-network:
name: haf-network
attachable: true
EOF
# Verify you configuration
docker compose --project-name haf-block-explorer \
--env-file local.env \
--file docker-compose.yml \
--file docker-compose.override.yml \
--file overrides/dev.yml \
config
# Create the HAF data directories
mkdir -p /srv/haf/data
mkdir /srv/haf/shm
# Start the application with custom project name
docker compose --project-name haf-block-explorer \
--env-file local.env \
--file docker-compose.yml \
--file docker-compose.override.yml \
--file overrides/dev.yml \
up -dNote that - as shown in the example above - if you want to use docker-compose.override.yml in addition to the other override files, you need to specify it explicitly.