Add docker-compose setup
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Murphy
2020-06-30 20:48:47 +02:00
parent ea2501fe05
commit e5d160d359
3 changed files with 19 additions and 1 deletions

View File

@ -7,7 +7,10 @@ docker-build:
docker-run:
@docker run --rm -p 5000:5000 autonomic/magicapp
compose-run:
@docker-compose -f compose.yml up
docker-publish:
@docker push autonomic/magicapp:v0.1.0
.PHONY: python-run docker-build docker-run docker-publish
.PHONY: python-run docker-build docker-run docker-publish compose-run