Skip to content

Commit ee267ea

Browse files
authored
Fix #415: Prune unused container and do not detach on make prod-deploy
1 parent 4a3d353 commit ee267ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 1.0.1 under development
44

5+
- Enh #415: Prune unused container and do not detach on `make prod-deploy` (@samdark)
56
- Bug #402, #411: Always use only one goal in Makefile (@vjik)
67
- Bug #409, #410: Fix fake goals in Makefile (@vjik)
78
- Bug #403: Add DI container delegates configuration (@vjik)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ endif
122122

123123
ifeq ($(PRIMARY_GOAL),prod-deploy)
124124
prod-deploy: ## PROD | Deploy to production
125-
docker -H ${PROD_SSH} stack deploy --with-registry-auth -d -c docker/compose.yml -c docker/prod/compose.yml ${STACK_NAME}
125+
docker -H ${PROD_SSH} stack deploy --prune --detach=false --with-registry-auth -c docker/compose.yml -c docker/prod/compose.yml ${STACK_NAME}
126126
endif
127127

128128
#

0 commit comments

Comments
 (0)