mirror of https://github.com/apache/archiva.git
Fix for older docker versions
This commit is contained in:
parent
8183ff19eb
commit
75f14a95d9
|
@ -39,6 +39,8 @@ TAG="${CONTAINER_NAME}:${CONTAINER_VERSION}"
|
||||||
|
|
||||||
START_ARG="$1"
|
START_ARG="$1"
|
||||||
|
|
||||||
|
docker -v
|
||||||
|
|
||||||
function stop_instance() {
|
function stop_instance() {
|
||||||
CONT=`docker ps -q --filter=name=${INSTANCE_NAME}`
|
CONT=`docker ps -q --filter=name=${INSTANCE_NAME}`
|
||||||
if [ "${CONT}" != "" ]; then
|
if [ "${CONT}" != "" ]; then
|
||||||
|
@ -55,7 +57,7 @@ function stop_instance() {
|
||||||
|
|
||||||
function start_instance() {
|
function start_instance() {
|
||||||
echo "Starting container ${INSTANCE_NAME}"
|
echo "Starting container ${INSTANCE_NAME}"
|
||||||
docker run -d --network="${NETWORK_TYPE}" -p "${PORT_MAPPING}" --name "${INSTANCE_NAME}" "${TAG}"
|
docker run -d --net="${NETWORK_TYPE}" -p "${PORT_MAPPING}" --name "${INSTANCE_NAME}" "${TAG}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_usage() {
|
function print_usage() {
|
||||||
|
|
Loading…
Reference in New Issue