You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/.drone.yml

46 lines
1.3 KiB

kind: pipeline
type: exec
name: default
steps:
- name: build to production
commands:
- docker build -t registry.willaspace.com/willaspace/${IMAGE_NAME}:latest --build-arg ssh_prv_key="$(cat /home/administrator/.ssh/id_rsa)" .
when:
branch:
- master
- name: deploy to production
commands:
- cd /home/administrator/apps/${IMAGE_NAME}/ ; docker-compose up -d
- docker exec willaengine bash -c "COMPOSER=composer-prod.json composer update"
- docker exec willaengine service cron start
- docker exec willaengine php artisan config:cache
- docker exec willaengine php artisan route:cache
when:
branch:
- master
- name: build to staging
commands:
- docker build -t registry.willaspace.com/willaspace/${IMAGE_NAME}-staging:latest -f Dockerfile.staging --build-arg ssh_prv_key="$(cat /home/administrator/.ssh/id_rsa)" .
- docker build -t registry.willaspace.com/willaspace/${IMAGE_NAME}-staging-nginx:latest -f Dockerfile.nginx .
when:
branch:
- dev
- name: deploy to staging
commands:
- cd /apps/${IMAGE_NAME}-staging/ ; docker-compose up -d
when:
branch:
- dev
trigger:
branch:
- master
- dev
environment:
- IMAGE_NAME=willaengine