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