forked from UniqueStudio/open-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
85 lines (80 loc) · 1.69 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
80
81
82
83
84
85
kind: pipeline
type: docker
name: default
clone:
disable: true
steps:
- name: clone
image: alpine/git
commands:
- git config --global url."https://hub.fastgit.org".insteadOf https://github.com
- git clone -b $DRONE_COMMIT_BRANCH $DRONE_GIT_HTTP_URL .
- name: build_publish
image: plugins/docker
settings:
username:
from_secret: docker_hub_username
password:
from_secret: docker_hub_password
auto_tag: true
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: tmaier/docker-compose
depends_on:
- build_publish
volumes:
- name: sock
path: /var/run/docker.sock
- name: config_dev
path: /tmp
commands:
- pwd
- cd /tmp
- docker-compose up -d
when:
branch:
- dev
event:
- push
- name: deploy_prod
image: tmaier/docker-compose
depends_on:
- build_publish
volumes:
- name: sock
path: /var/run/docker.sock
- name: config
path: /tmp
commands:
- pwd
- cd /tmp
- docker-compose up -d
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