-
Notifications
You must be signed in to change notification settings - Fork 7
/
.drone.yml
77 lines (71 loc) · 1.57 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
kind: pipeline
type: docker
name: open-platform
clone:
disable: true
steps:
- name: clone
image: alpine/git
commands:
- git clone --depth=1 -b $DRONE_COMMIT_BRANCH https://github.com.cnpmjs.org/UniqueStudio/open-platform.git .
- name: build_publish
image: plugins/docker
settings:
username:
from_secret: docker_hub_username
password:
from_secret: docker_hub_password
tags: ${DRONE_TAG=latest}
registry: ccr.ccs.tencentyun.com
repo: ccr.ccs.tencentyun.com/unique-studio/open-platform
volumes:
- name: sock
path: /var/run/docker.sock
- name: local
path: /var/lib/docker
- name: deploy_dev
image: docker/compose:1.29.2
commands:
- docker-compose up -d --remove-orphans
depends_on:
- build_publish
volumes:
- name: sock
path: /var/run/docker.sock
when:
branch:
- dev
event:
- push
- name: deploy_prod
image: docker/compose:1.29.2
commands:
- docker-compose up -d --remove-orphans
depends_on:
- build_publish
volumes:
- name: sock
path: /var/run/docker.sock
when:
event:
- tag
volumes:
- name: sock
host:
path: /var/run/docker.sock
- name: local
host:
path: /var/lib/docker
- name: config_dev
#把宿主机的config和docker-compose.yml挂载进docker
host:
path: /root/service-dev/open-platform
- name: config-prod
host:
path: /root/service/open-platform
trigger:
branch:
- dev
event:
- push
- tag