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