startpage/.drone.yml

13 lines
318 B
YAML
Raw Normal View History

2021-06-22 12:47:43 +02:00
pipeline:
2021-06-22 12:38:10 +02:00
2021-06-22 12:47:43 +02:00
deploy-production:
2021-06-22 12:51:09 +02:00
image: docker/compose
2021-06-22 12:38:10 +02:00
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker-compose -p startpage down
2021-06-23 03:38:44 +02:00
- docker-compose build --no-cache startpage
2021-06-22 12:38:10 +02:00
- docker-compose -p startpage up -d
2021-06-22 12:49:44 +02:00
when:
event: push
2021-06-22 12:51:09 +02:00
branch: [master]