16 lines
220 B
Bash
Executable File
16 lines
220 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
set -x
|
|
|
|
|
|
|
|
dc() {
|
|
# shellcheck disable=SC2068
|
|
docker-compose \
|
|
-f docker-compose.yml \
|
|
$@
|
|
}
|
|
|
|
export DOCKER_HOST=${DOCKER_HOST:-'dkhost:2376'}
|
|
dc exec dkregistry_registry.1 /bin/bash
|