deployment

This commit is contained in:
cupcakearmy 2019-03-05 19:37:24 +01:00
parent e29c8bad89
commit e4aa29ad9c
2 changed files with 24 additions and 37 deletions

View File

@ -2,47 +2,33 @@ kind: pipeline
name: default
steps:
- name: install
- name: build
image: node:11-alpine
commands:
- node -v
- npm -v
- npm i
- name: build
image: node:11-alpine
commands:
- npm run build:prod
- name: copy
image: appleboy/drone-scp
- name: deploy
image: cupcakearmy/drone-deploy
pull: always
environment:
PLUGIN_KEY:
from_secret: ssh_key
settings:
host: nicco.io
username: root
user: root
port: 1312
target: /srv/web/home
source:
sources:
- ./public
- ./docker-compose.yml
- ./docker-compose.prod.yml
commands:
- 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
when:
event: push
branch: master
- name: run
image: appleboy/drone-ssh
environment:
PLUGIN_KEY:
from_secret: ssh_key
settings:
host: nicco.io
username: root
port: 1312
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

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
node_modules
package-lock.json
public
.idea