Skip to content

Commit ad1af56

Browse files
committed
Let 'make dev.up.<service>' take multiple +-separated services
1 parent 1bbc76f commit ad1af56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ ifeq ($(ALWAYS_CACHE_PROGRAMS),true)
114114
make dev.cache-programs
115115
endif
116116

117-
dev.up.%: | check-memory ## Bring up a specific service and its dependencies with host volumes
118-
bash -c 'docker-compose $(STANDARD_COMPOSE_FILES) up -d $*'
117+
dev.up.%: | check-memory ## Bring up specific services (separated by plus-signs) and their dependencies with host volumes.
118+
bash -c 'docker-compose $(STANDARD_COMPOSE_FILES) up -d $$(echo $* | tr + " ")'
119119
ifeq ($(ALWAYS_CACHE_PROGRAMS),true)
120120
make dev.cache-programs
121121
endif

0 commit comments

Comments
 (0)