This commit is contained in:
2021-07-16 09:12:30 +02:00
commit 3c0bd54d54
55 changed files with 25927 additions and 0 deletions

12
.drone.yml Normal file
View File

@ -0,0 +1,12 @@
pipeline:
deploy-production:
image: docker/compose
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker-compose -p otm down
- docker-compose build --no-cache otm
- docker-compose -p otm up -d
when:
event: push
branch: [master]