🐳 Drone CI auto update all my docker images

This commit is contained in:
2023-02-06 11:52:21 +01:00
parent 8c3769180d
commit 031a5175b9
2 changed files with 31 additions and 6 deletions

26
.drone.yml Normal file
View File

@@ -0,0 +1,26 @@
---
kind: pipeline
type: docker
name: build and push
steps:
- name: build and push
image: docker:dind
volumes:
- name: docker.sock
path: /var/run/docker.sock
environment:
REG:
from_secret: registry
commands:
- mkdir ~/.docker
- echo "$REG" > ~/.docker/config.json
- apk add make
- make all
trigger:
event:
- cron
cron:
- monthly