-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.drone.yml
68 lines (65 loc) · 1.52 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
---
kind: pipeline
name: build
type: docker
steps:
- name: build_cve_dictionary
image: plugins/docker
dockerfile: cve-dictionary/Dockerfile
context: cve-dictionary
privileged: true
network_mode: host
custom_dns: [1.1.1.1, 9.9.9.9]
settings:
auto_tag: true
auto_tag_suffix: latest
repo: blackhatch/beehibesh
cache_from: blackhatch/beehivesh:latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag
- name: build_gost
image: plugins/docker
dockerfie: gost/Dockerfile
context: gost
privileged: true
network_mode: host
custom_dns: [1.1.1.1, 9.9.9.9]
settings:
auto_tag: true
auto_tag_suffix: latest
repo: beehivesec/gost
cache_from: beehivesec/gost:latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag
- name: build_oval_dictionary
image: plugins/docker
dockerfile: oval-dictionary/Dockerfile
context: oval-dictionary
privileged: true
network_mode: host
custom_dns: [1.1.1.1, 9.9.9.9]
settings:
auto_tag: true
auto_tag_suffix: latest
repo: beehivesec/oval-dictionary
cache_from: beehivesec/oval-dictionary:latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event:
- push
- tag