-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.drone.yml
221 lines (196 loc) · 4.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
---
name: development
kind: pipeline
type: docker
trigger:
branch:
- dev
event:
- push
concurrency:
limit: 1
clone:
depth: 1
environment:
MIX_ENV: prod
NODE_ENV: prod
steps:
- name: npm assets
image: node:lts # we're using standard version because git is needed
volumes:
- name: npm-temp
path: /root/.npm
commands:
- cd assets
- npm install
- npm run build
# - name: download assets
# image: minio/mc
# environment:
# MC_HOST_minio:
# from_secret: minio_connection
# commands:
# - mc cp --recursive minio/phoenix_svelte_adminlte-assets/ /drone/src/apps/priv/static
- name: elixir deps
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix do local.hex --force, local.rebar --force
- mix do deps.get --only $MIX_ENV, deps.compile
- name: digest
depends_on:
- elixir deps
- npm assets
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix phx.digest
- name: assemble release
depends_on:
- digest
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix release
- name: dockerfile build
depends_on:
- assemble release
image: plugins/docker
settings:
repo: registry.km8.es/phoenix-svelte-adminlte
tags:
- "dev"
registry: registry.km8.es
username:
from_secret: docker_repo_user
password:
from_secret: docker_repo_password
build_args:
- MIX_ENV=prod
- name: deploy
image: appleboy/drone-ssh
depends_on:
- dockerfile build
settings:
host: web-03.km8.vm
port: 22
username:
from_secret: web-01_ssh_user
key:
from_secret: web-01_ssh_key
passphrase:
from_secret: web-01_ssh_passphrase
script:
- cd /srv/docker/phoenix-svelte-adminlte-dev
- docker-compose down
- docker-compose pull
- docker-compose up -d
volumes:
- name: mix-temp
temp: {}
- name: npm-temp
temp: {}
---
name: production
kind: pipeline
type: docker
trigger:
branch:
- master
event:
- push
concurrency:
limit: 1
clone:
depth: 1
environment:
MIX_ENV: prod
NODE_ENV: prod
steps:
- name: npm assets
image: node:lts # we're using standard version because git is needed
volumes:
- name: npm-temp
path: /root/.npm
commands:
- cd assets
- npm install
- npm run build
# - name: download assets
# image: minio/mc
# environment:
# MC_HOST_minio:
# from_secret: minio_connection
# commands:
# - mc cp --recursive minio/phoenix_svelte_adminlte-assets/ /drone/src/apps/priv/static
- name: elixir deps
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix do local.hex --force, local.rebar --force
- mix do deps.get --only $MIX_ENV, deps.compile
- name: digest
depends_on:
- elixir deps
- npm assets
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix phx.digest
- name: assemble release
depends_on:
- digest
image: elixir:1.13-alpine
volumes:
- name: mix-temp
path: /root/.mix
commands:
- mix release
- name: dockerfile build
depends_on:
- assemble release
image: plugins/docker
settings:
repo: registry.km8.es/phoenix-svelte-adminlte
tags:
- "latest"
registry: registry.km8.es
username:
from_secret: docker_repo_user
password:
from_secret: docker_repo_password
build_args:
- MIX_ENV=prod
- name: deploy
image: appleboy/drone-ssh
depends_on:
- dockerfile build
settings:
host: web-03.km8.vm
port: 22
username:
from_secret: web-01_ssh_user
key:
from_secret: web-01_ssh_key
passphrase:
from_secret: web-01_ssh_passphrase
script:
- cd /srv/docker/phoenix-svelte-adminlte
- docker-compose down
- docker-compose pull
- docker-compose up -d
volumes:
- name: mix-temp
temp: {}
- name: npm-temp
temp: {}