10 lines
103 B
Bash
10 lines
103 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -a
|
||
|
. ./docker.conf
|
||
|
docker pull $DOCKER_IMAGE
|
||
|
|
||
|
echo "Docker image $DOCKER_IMAGE"
|
||
|
|
||
|
set +a
|