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

16
docker-compose.prod.yml Normal file
View File

@ -0,0 +1,16 @@
version: '3'
services:
home:
networks:
- traefik
labels:
- traefik.enable=true
- traefik.port=80
- traefik.docker.network=traefik
- traefik.backend=home
- traefik.frontend.rule=Host:nicco.io
networks:
traefik:
external: true

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
home:
image: nginx:alpine
restart: always
ports:
- 80
volumes:
- ./public:/usr/share/nginx/html:ro