forked from rancher/image-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
56 lines (53 loc) · 1.21 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
---
kind: pipeline
name: default-image-push-pull
platform:
os: linux
arch: amd64
steps:
- name: validate-list
image: library/ubuntu:21.04
commands:
- grep -vE '^\s*(#|//)' images-list | sort -Vc
- grep -vE '^\s*(#|//)' images-list-daily | sort -Vc
# this step will run on every push
- name: mirror-images
image: rancher/dapper:v0.5.7
volumes:
- name: docker
path: /var/run/docker.sock
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
commands:
- cat images-list | dapper
settings:
custom_dns: 1.1.1.1
when:
event:
- push
# this step will run on every push, and also via cron every day
- name: mirror-images-daily
image: rancher/dapper:v0.5.7
volumes:
- name: docker
path: /var/run/docker.sock
environment:
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
commands:
- cat images-list-daily | dapper
settings:
custom_dns: 1.1.1.1
when:
event:
- push
- cron
volumes:
- name: docker
host:
path: /var/run/docker.sock