Rename prod compose file and modify Makefile for stacks

This commit is contained in:
mitchell 2019-08-10 00:17:27 -04:00
parent d83a4641a3
commit d1d53b480e
3 changed files with 36 additions and 19 deletions

View file

@ -9,14 +9,14 @@ build:
clean:
rm -rf ./bin ./vendor
local:
docker-compose up -d
deploy:
docker stack deploy -c docker-stack.yml selfpass
up:
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up
docker-compose up
upd:
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
docker-compose up -d
down:
docker-compose down