Skip to content

Commit

Permalink
Add continuous delivery of images to DockerHub
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Jan 28, 2019
1 parent 4a246d8 commit de5a7b3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
language: python
services:
- docker
python:
- "3.6"
install:
- pip install -r requirements.txt
script:
- tools/ci.sh
deploy:
- provider: script
script: tools/cd.sh
on:
repo: chakki-works/doccano
tags: true
15 changes: 15 additions & 0 deletions tools/cd.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

if [[ -z "${DOCKER_USERNAME}" ]]; then echo "Missing DOCKER_USERNAME environment variable" >&2; exit 1; fi
if [[ -z "${DOCKER_PASSWORD}" ]]; then echo "Missing DOCKER_PASSWORD environment variable" >&2; exit 1; fi
if [[ -z "${TRAVIS_TAG}" ]]; then echo "Missing TRAVIS_TAG environment variable" >&2; exit 1; fi

set -o errexit

docker build -t "${DOCKER_USERNAME}/doccano:latest" .
docker build -t "${DOCKER_USERNAME}/doccano:${TRAVIS_TAG}" .

echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin

docker push "${DOCKER_USERNAME}/doccano:latest"
docker push "${DOCKER_USERNAME}/doccano:${TRAVIS_TAG}"

0 comments on commit de5a7b3

Please sign in to comment.