ci: add tagging
This commit is contained in:
parent
04ec4f92f8
commit
337afecc9f
1 changed files with 55 additions and 6 deletions
61
.drone.yml
61
.drone.yml
|
@ -3,26 +3,26 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: default
|
||||||
steps:
|
steps:
|
||||||
# prüfe ob secrets im Repo sind
|
|
||||||
- name: run gitleaks
|
- name: run gitleaks
|
||||||
image: plugins/gitleaks
|
image: plugins/gitleaks
|
||||||
settings:
|
settings:
|
||||||
path: .
|
path: .
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- tag
|
||||||
|
|
||||||
# linter für Dockerfiles
|
|
||||||
# https://github.com/hadolint/hadolint/blob/master/docs/INTEGRATION.md
|
|
||||||
- name: hadolint
|
- name: hadolint
|
||||||
image: hadolint/hadolint:latest-debian
|
image: hadolint/hadolint:latest-debian
|
||||||
# image: ghcr.io/hadolint/hadolint:latest-debian
|
|
||||||
commands:
|
commands:
|
||||||
- hadolint --version
|
- hadolint --version
|
||||||
- hadolint Dockerfile
|
- hadolint Dockerfile
|
||||||
|
|
||||||
- name: docker_build_and_push
|
- name: docker_build_and_push_selfhosted
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
repo: registry.mgrote.net/munin-server
|
repo: registry.mgrote.net/python-api-server
|
||||||
registry: registry.mgrote.net
|
registry: registry.mgrote.net
|
||||||
tags:
|
tags:
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
- ${DRONE_COMMIT_SHA:0:8}
|
||||||
|
@ -32,3 +32,52 @@ steps:
|
||||||
event:
|
event:
|
||||||
exclude:
|
exclude:
|
||||||
- pull_request
|
- pull_request
|
||||||
|
- tag
|
||||||
|
|
||||||
|
|
||||||
|
- name: docker_build_and_push_dockerhub
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: DOCKERHUB_USER
|
||||||
|
password:
|
||||||
|
from_secret: DOCKERHUB_PASS
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: quotengrote/python-api-server
|
||||||
|
tags:
|
||||||
|
- ${DRONE_COMMIT_SHA:0:8}
|
||||||
|
- ${DRONE_COMMIT_BRANCH}
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
- tag
|
||||||
|
|
||||||
|
|
||||||
|
- name: docker_build_and_push_selfhosted_tag
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: registry.mgrote.net/python-api-server
|
||||||
|
registry: registry.mgrote.net
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG}
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: docker_build_and_push_dockerhub_tag
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: DOCKERHUB_USER
|
||||||
|
password:
|
||||||
|
from_secret: DOCKERHUB_PASS
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: quotengrote/python-api-server
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG}
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
Reference in a new issue