hello-world-service/run_docker/pull_docker.sh

10 lines
103 B
Bash
Executable File

#!/bin/sh
set -a
. ./docker.conf
docker pull $DOCKER_IMAGE
echo "Docker image $DOCKER_IMAGE"
set +a