-
Notifications
You must be signed in to change notification settings - Fork 14
/
.drone.yml
58 lines (54 loc) · 1.49 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
---
kind: pipeline
type: docker
name: default
steps:
- name: submodules
image: docker:git
environment:
GIT_USERNAME:
from_secret: git_username
GIT_PASSWORD:
from_secret: git_password
commands:
- git config submodule.secret.url https://$GIT_USERNAME:[email protected]/ripple/old-frontend-secret.git
- git submodule update --init --recursive
secrets: [ git_username, git_password ]
- name: prepare-docker
image: docker:git
environment:
GIT_USERNAME:
from_secret: git_username
GIT_PASSWORD:
from_secret: git_password
commands:
- mkdir -p /cache/${DRONE_REPO}/docker
- git clone https://$GIT_USERNAME:[email protected]/ripple/dockerfiles /dockerfiles
- date +"%Y%m%d.${DRONE_BUILD_NUMBER}" | tr -d '\n' > .tags
- cp /dockerfiles/dockerfiles/old-frontend.Dockerfile Dockerfile
volumes:
- name: cache
path: /cache
secrets: [ git_username, git_password ]
- name: package-docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
registry: d.nyodev.xyz
repo: d.nyodev.xyz/ripple/o9d
use_cache: true
purge: false
secrets: [ docker_username, docker_password ]
volumes:
- name: docker
path: /var/lib/docker
volumes:
- name: cache
host:
path: /var/cache
- name: docker
host:
path: /var/cache/${DRONE_REPO}/docker