mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 12:17:37 +00:00
c74ea28014
Updates unnecessary need to grant special privileges when running in Docker.
18 lines
216 B
Makefile
18 lines
216 B
Makefile
.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
|