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

35 lines
667 B
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
2022-07-23 10:48:11 +02:00
- name: docker_build_and_push
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}
when:
branch:
- master
event:
exclude:
- pull_request