You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportVCS_STATUS_CLIENT:= $(if$(shell git status -s),'modified/untracked','clean')
51
51
exportBUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
52
52
@@ -131,20 +131,8 @@ endef
131
131
132
132
rebuild: build-nc # alias
133
133
buildbuild-nc: .env ## Builds production images and tags them as 'local/{service-name}:production'. For single target e.g. 'make target=webserver build'
build-develbuild-devel-nc: .env ## Builds development images and tags them as 'local/{service-name}:development'. For single target e.g. 'make target=webserver build-devel'
up-devel: .stack-simcore-development.yml .init-swarm $(CLIENT_WEB_OUTPUT)## Deploys local development stack, qx-compile+watch and ops stack (pass 'make ops_disabled=1 up-...' to disable)
up-prod: .stack-simcore-production.yml .init-swarm ## Deploys local production stack and ops stack (pass 'make ops_disabled=1 up-...' to disable or target=<service-name> to deploy a single service)
@@ -294,7 +282,7 @@ down: ## Stops and removes stack
294
282
$(shell docker stack ls --format={{.Name}} | tac),\
295
283
docker stack rm $(stack);)
296
284
# Removing client containers (if any)
297
-
-@$(MAKE_C) services/web/client down
285
+
-@$(MAKE_C) services/static-webserver/client down
298
286
# Removing generated docker compose configurations, i.e. .stack-*
299
287
-@rm $(wildcard .stack-*)
300
288
# Removing local registry if any
@@ -380,7 +368,7 @@ devenv: .venv ## create a python virtual environment with dev tools (e.g. linter
380
368
381
369
devenv-all: devenv ## sets up extra development tools (everything else besides python)
Copy file name to clipboardExpand all lines: services/docker-compose-ops.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
# Nonetheless, notice that minio is a service used from simcore stack. Therefore, disabling ops stack
16
16
# is meaningful ONLY when simcore stack is intended to run with the the actual stacks from osparc-ops
17
17
#
18
-
# NOTE: this stack cannot be called tools because it collides with default network created in services/web/client/tools/docker-compose.yml
18
+
# NOTE: this stack cannot be called tools because it collides with default network created in services/static-webserver/client/tools/docker-compose.yml
19
19
# IMPORTANT: This stack IS NOT used in the deployed version
0 commit comments