ci: new registry

This commit is contained in:
Michael Grote 2023-04-20 13:31:44 +02:00
parent c9bcfd445f
commit aa363d0a06

View file

@ -3,31 +3,32 @@ 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: .
# 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
# Bauen, taggen und pushen - name: docker_build_and_push
- name: docker_build_and_push_master
image: plugins/docker image: plugins/docker
settings: settings:
username: username:
from_secret: DOCKERHUB_USER from_secret: OCI-REGISTRY-USER
password: password:
from_secret: DOCKERHUB_PASS from_secret: OCI-REGISTRY-PASS
dockerfile: Dockerfile dockerfile: Dockerfile
repo: quotengrote/munin-server repo: registry.mgrote.net/allzweckcontainer
registry: registry.mgrote.net
tags: tags:
- latest
- ${DRONE_COMMIT_SHA:0:8} - ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH} - ${DRONE_COMMIT_BRANCH}
event: - latest
exclude:
- pull_request