docmachine-containers/.drone.yml

60 lines
1.2 KiB
YAML
Raw Normal View History

2023-01-16 11:56:01 +01:00
---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
environment:
commands:
2023-01-16 12:00:40 +01:00
- 'echo "Repository: glenux/docmachine"'
2023-01-16 11:56:01 +01:00
- '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
2023-01-16 12:00:40 +01:00
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
2023-01-16 11:59:23 +01:00
context: .
dockerfile: docker/Dockerfile
2023-01-16 12:00:40 +01:00
repo: glenux/docmachine
2023-01-16 12:18:02 +01:00
tags:
- "latest_${DRONE_BRANCH/\\//-}"
- "${DRONE_COMMIT_SHA:0:8}"
2023-01-16 11:56:01 +01:00
purge: false
when:
branch:
- "master"
- "develop"
- "feature/*"
- name: publish:latest
image: plugins/docker
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 12:00:40 +01:00
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
2023-01-16 11:59:23 +01:00
context: .
dockerfile: docker/Dockerfile
2023-01-16 12:00:40 +01:00
repo: glenux/docmachine
2023-01-16 11:56:01 +01:00
tags: latest
purge: false
when:
branch:
- master
# volumes:
# - name: cache
# temp: {}
#