docker-build-push/.github/e2e/distribution/install.sh

13 lines
308 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -eu
: "${DISTRIBUTION_VERSION:=registry:2}"
: "${DISTRIBUTION_HOST:=localhost}"
: "${DISTRIBUTION_PORT:=8080}"
echo "::group::Starting ${DISTRIBUTION_VERSION}}"
(
set -x
docker run -d --name registry -p "5000:${DISTRIBUTION_PORT}" "${DISTRIBUTION_VERSION}"
)
echo "::endgroup::"