fix(docker): run in docker, and build scripts for docker (#1291)

Updates unnecessary need to grant special privileges when running in Docker.
This commit is contained in:
Egidijus Ligeika
2020-12-11 17:13:11 +00:00
committed by GitHub
parent 67b19a7a8b
commit c74ea28014
5 changed files with 63 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
.DEFAULT_GOAL := run
.PHONY: build
build:
docker-compose build streetmerchant
.PHONY: run
run:
docker-compose up
.PHONY: run-detached
run-detached:
docker-compose up -d
.PHONY: stop
stop:
docker-compose down