ottertune/.travis/deploy.sh

10 lines
123 B
Bash
Executable File

#!/bin/bash
images="base web driver driver-internal"
for img in $images
do
docker push "${DOCKER_REPO}:${img}"
done