adding simon prefix to containers

Former-commit-id: eafda99029e4cc020bfe38c3fee1a91c59c40fcf
This commit is contained in:
Michael T. Kelbaugh
2020-02-26 16:05:09 -05:00
parent 6e77055208
commit 7f2ce2a0a7

View File

@@ -6,15 +6,15 @@ build-model:
docker build -t simon-model:latest -f build/Dockerfile .
up:
cd build && docker-compose up --build -d
cd build && docker-compose -p simon up --build -d
all: build-model up
stop:
cd build && docker-compose stop
cd build && docker-compose -p simon stop
clean:
cd build && docker-compose down
cd build && docker-compose -p simon down
purge:
cd build && docker-compose down --rmi all
cd build && docker-compose -p simon down --rmi all