drone deployment

This commit is contained in:
cupcakearmy 2019-03-03 16:51:45 +01:00
parent 872db11076
commit bad21eaf6f

View File

@ -1,39 +1,50 @@
pipeline: kind: pipeline
name: default
install: steps:
- name: install
image: node:11-alpine image: node:11-alpine
commands: commands:
- node -v - node -v
- npm -v - npm -v
- npm i - npm i
build: #pipeline:
image: node:11-alpine #
commands: # install:
- npm run build:prod # image: node:11-alpine
# commands:
copy: # - node -v
image: appleboy/drone-scp # - npm -v
host: nicco.io # - npm i
username: deploy #
port: 1312 # build:
secrets: [ ssh_key ] # image: node:11-alpine
target: /srv/web/home # commands:
source: # - npm run build:prod
- ./public #
- ./docker-compose.yml # copy:
- ./docker-compose.prod.yml # image: appleboy/drone-scp
when: # host: nicco.io
event: push # username: deploy
branch: master # port: 1312
# secrets: [ ssh_key ]
run: # target: /srv/web/home
image: appleboy/drone-ssh # source:
host: nicco.io # - ./public
username: deploy # - ./docker-compose.yml
port: 1312 # - ./docker-compose.prod.yml
secrets: [ ssh_key ] # when:
script: # event: push
- cd /srv/web/home # 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 # 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