mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash -e
|
|
# Travis Deploy Docker Push
|
|
|
|
./build
|
|
docker info
|
|
./docker-build
|
|
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p=$DOCKER_PASSWORD quay.io
|
|
./docker-push
|