drone deployment

This commit is contained in:
cupcakearmy
2019-03-03 16:27:15 +01:00
parent a57ad5087a
commit 872db11076
3 changed files with 65 additions and 0 deletions

39
.drone.yml Normal file
View File

@@ -0,0 +1,39 @@
pipeline:
install:
image: node:11-alpine
commands:
- node -v
- npm -v
- npm i
build:
image: node:11-alpine
commands:
- npm run build:prod
copy:
image: appleboy/drone-scp
host: nicco.io
username: deploy
port: 1312
secrets: [ ssh_key ]
target: /srv/web/home
source:
- ./public
- ./docker-compose.yml
- ./docker-compose.prod.yml
when:
event: push
branch: master
run:
image: appleboy/drone-ssh
host: nicco.io
username: deploy
port: 1312
secrets: [ ssh_key ]
script:
- cd /srv/web/home
- docker-compose -f docker-compose.yml -f docker-compose.prod.yml down
- docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d