mirror of
https://gitea.com/docker/build-push-action.git
synced 2025-05-16 23:49:27 +07:00
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
#!/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::" |