OD.WebApplication/.drone.yml
Pablo 0da67c4717
All checks were successful
continuous-integration/drone/push Build is passing
DEVOPS'd
2020-07-13 04:03:45 +02:00

18 lines
305 B
YAML

kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: Build
commands:
- docker build -t aspnetapp .
- name: Stop containers
commands:
- docker-compose down --remove-orphans
- name: Start containers
commands:
- docker-compose up -d