Skip to content

Commit 277d303

Browse files
author
Andrei Neagu
committed
added missing
1 parent fb26261 commit 277d303

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export STORAGE_API_VERSION := $(shell cat $(CURDIR)/services/storage/VERSION)
7474
export INVITATIONS_API_VERSION := $(shell cat $(CURDIR)/services/invitations/VERSION)
7575
export PAYMENTS_API_VERSION := $(shell cat $(CURDIR)/services/payments/VERSION)
7676
export DYNAMIC_SCHEDULER_API_VERSION := $(shell cat $(CURDIR)/services/dynamic-scheduler/VERSION)
77+
export NOTIFICATIONS_API_VERSION := $(shell cat $(CURDIR)/services/notifications/VERSION)
7778
export DATCORE_ADAPTER_API_VERSION := $(shell cat $(CURDIR)/services/datcore-adapter/VERSION)
7879
export WEBSERVER_API_VERSION := $(shell cat $(CURDIR)/services/web/server/VERSION)
7980

@@ -611,6 +612,7 @@ settings-schema.json: ## [container] dumps json-schema settings of all services
611612
@$(MAKE_C) services/invitations $@
612613
@$(MAKE_C) services/payments $@
613614
@$(MAKE_C) services/dynamic-scheduler $@
615+
@$(MAKE_C) services/notifications $@
614616
@$(MAKE_C) services/storage $@
615617
@$(MAKE_C) services/web/server $@
616618

services/docker-compose-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,13 @@ services:
179179
- ${DOCKER_REGISTRY:-itisfoundation}/notifications:master-github-latest
180180
- ${DOCKER_REGISTRY:-itisfoundation}/notifications:staging-github-latest
181181
- ${DOCKER_REGISTRY:-itisfoundation}/notifications:release-github-latest
182-
target: production
182+
target: ${BUILD_TARGET:?build_target_required}
183183
labels:
184184
org.label-schema.schema-version: "1.0"
185185
org.opencontainers.image.created: "${BUILD_DATE}"
186186
org.opencontainers.image.source: "${VCS_URL}"
187187
org.opencontainers.image.revision: "${VCS_REF}"
188+
io.osparc.api-version: "${NOTIFICATIONS_API_VERSION}"
188189

189190
resource-usage-tracker:
190191
image: local/resource-usage-tracker:${BUILD_TARGET:?build_target_required}

services/docker-compose.local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ services:
9191
notifications:
9292
environment:
9393
<<: *common_environment
94-
INVITATIONS_REMOTE_DEBUGGING_PORT : 3000
94+
NOTIFICATIONS_REMOTE_DEBUGGING_PORT : 3000
9595
ports:
9696
- "8015:8000"
9797
- "3023:3000"

0 commit comments

Comments
 (0)