This repository has been archived on 2024-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
munin-server/.drone.yml

54 lines
1.1 KiB
YAML
Raw Normal View History

2022-07-23 10:48:11 +02:00
---
kind: pipeline
type: docker
2022-07-23 10:48:11 +02:00
name: default
steps:
2022-07-24 20:33:09 +02:00
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
2022-08-06 20:25:45 +02:00
- name: hadolint
image: hadolint/hadolint:latest-debian
commands:
- hadolint --version
- hadolint Dockerfile
2023-04-16 12:08:53 +02:00
# Bauen, taggen und pushen
- name: docker_build_and_push_master
2022-07-23 10:48:11 +02:00
image: plugins/docker
settings:
2022-08-06 20:25:45 +02:00
username:
from_secret: DOCKERHUB_USER
2022-07-23 10:48:11 +02:00
password:
from_secret: DOCKERHUB_PASS
dockerfile: Dockerfile
2022-10-23 10:10:47 +02:00
repo: quotengrote/munin-server
2022-07-23 10:48:11 +02:00
tags:
- latest
- ${DRONE_COMMIT_SHA:0:8}
2023-04-16 12:08:53 +02:00
- ${DRONE_COMMIT_BRANCH}
2022-07-23 10:48:11 +02:00
when:
branch:
- master
event:
exclude:
- pull_request
2023-04-16 12:08:53 +02:00
- name: docker_build_and_push
image: plugins/docker
settings:
username:
from_secret: DOCKERHUB_USER
password:
from_secret: DOCKERHUB_PASS
dockerfile: Dockerfile
repo: quotengrote/munin-server
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
when:
event:
exclude:
- pull_request