forked from rancher/image-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
79 lines (75 loc) · 1.68 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
kind: pipeline
name: default-image-push-pull
concurrency:
limit: 1
platform:
os: linux
arch: amd64
steps:
- name: validate-list
image: library/ubuntu:22.04
commands:
- grep -vE '^\s*(#|//)' images-list | sort -Vc
- grep -vE '^\s*(#|//)' images-list-daily | sort -Vc
- name: check-new-images-exist
image: rancher/dapper:v0.6.0
volumes:
- name: docker
path: /var/run/docker.sock
commands:
- dapper check-new-images-exist.sh
settings:
custom_dns: 1.1.1.1
when:
event:
- pull_request
# this step will run on every push
- name: mirror-images
image: rancher/dapper:v0.6.0
volumes:
- name: docker
path: /var/run/docker.sock
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
IMAGES_FILE: images-list
commands:
- dapper image-mirror.sh
settings:
custom_dns: 1.1.1.1
when:
event:
- push
ref:
include:
- "refs/heads/master"
# this step will run on every push, and also via cron every day
- name: mirror-images-daily
image: rancher/dapper:v0.6.0
volumes:
- name: docker
path: /var/run/docker.sock
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
IMAGES_FILE: images-list-daily
commands:
- dapper image-mirror.sh
settings:
custom_dns: 1.1.1.1
when:
event:
- push
- cron
ref:
include:
- "refs/heads/master"
volumes:
- name: docker
host:
path: /var/run/docker.sock