Glenn Y. Rolland
e3ef99661a
All checks were successful
continuous-integration/drone/push Build is passing
59 lines
1.2 KiB
YAML
59 lines
1.2 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: debug
|
|
image: alpine
|
|
environment:
|
|
|
|
commands:
|
|
- 'echo "Repository: glenux/docmachine"'
|
|
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
|
|
|
|
- name: publish:commit_branch
|
|
image: plugins/docker
|
|
# volumes:
|
|
# - name: cache
|
|
# path: /stupid
|
|
settings:
|
|
username:
|
|
from_secret: DOCKERHUB_USERNAME
|
|
password:
|
|
from_secret: DOCKERHUB_PASSWORD
|
|
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
repo: glenux/docmachine
|
|
tags:
|
|
- "latest_${DRONE_BRANCH/\\//-}"
|
|
- "${DRONE_COMMIT_SHA:0:8}"
|
|
purge: false
|
|
when:
|
|
branch:
|
|
- "master"
|
|
- "develop"
|
|
- "feature/*"
|
|
|
|
- name: publish:latest
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: DOCKERHUB_USERNAME
|
|
password:
|
|
from_secret: DOCKERHUB_PASSWORD
|
|
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
repo: glenux/docmachine
|
|
tags: latest
|
|
purge: false
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
# volumes:
|
|
# - name: cache
|
|
# temp: {}
|
|
#
|