1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00
copilot/legacy/bin/docker-login

11 lines
281 B
Plaintext
Raw Normal View History

2016-10-31 19:09:00 +02:00
#! /usr/bin/env bash
#
# Prelude - make bash behave sanely
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
#
set -euo pipefail
echo ">> Logging into $_DOCKER_REGISTRY"
docker login -e="." -u="$_DOCKER_LOGIN_USERNAME" -p="$_DOCKER_LOGIN_PASSWORD" "$_DOCKER_REGISTRY"