https://gitlab.com/tezos/tezos
Raw File
Tip revision: bf1f86102fbe580130214427f8a0bd68950fb3f2 authored by Martin Tomazic on 24 April 2023, 10:01:54 UTC
DAC: Prefix endpoints with "v1" for first release API
Tip revision: bf1f861
docker.sh
#!/bin/sh

## Sourceable file with common variables for other scripts related to docker images

## Docker image names

# shellcheck disable=SC2034
docker_build_image="${DOCKER_IMAGE_NAME}build"

# Shell parameter expansion: %? trims the last character of variable DOCKER_IMAGE_NAME
# shellcheck disable=SC2034
docker_images="${DOCKER_IMAGE_NAME}debug ${DOCKER_IMAGE_NAME}bare ${DOCKER_IMAGE_NAME%?}"

## Multi-stage docker images: target for each image (match docker_images order)

# shellcheck disable=SC2034
docker_targets='debug bare minimal'

## Multi-arch docker images

# shellcheck disable=SC2034
docker_architectures='amd64 arm64'
back to top