Skip to content

Commit b9da94d

Browse files
author
Andrei Neagu
committed
added env vars
1 parent f39fa91 commit b9da94d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.env-devel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ DIRECTOR_SERVICES_CUSTOM_CONSTRAINTS=null
8484
DIRECTOR_TRACING=null
8585

8686
DOCKER_API_PROXY_HOST=docker-api-proxy
87+
DOCKER_API_PROXY_PASSWORD=null
8788
DOCKER_API_PROXY_PORT=8888
89+
DOCKER_API_PROXY_SECURE=False
90+
DOCKER_API_PROXY_USER=null
8891

8992
EFS_USER_ID=8006
9093
EFS_USER_NAME=efs

services/docker-compose.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,7 @@ services:
549549
hostname: "{{.Node.Hostname}}-{{.Task.Slot}}"
550550
networks:
551551
- default
552+
- ${SWARM_STACK_NAME}_docker-api-network
552553
environment:
553554
LOG_FORMAT_LOCAL_DEV_ENABLED: ${LOG_FORMAT_LOCAL_DEV_ENABLED}
554555
LOG_FILTER_MAPPING : ${LOG_FILTER_MAPPING}
@@ -573,7 +574,11 @@ services:
573574
DYNAMIC_SIDECAR_API_SAVE_RESTORE_STATE_TIMEOUT: ${DYNAMIC_SIDECAR_API_SAVE_RESTORE_STATE_TIMEOUT}
574575
TRACING_OPENTELEMETRY_COLLECTOR_ENDPOINT: ${TRACING_OPENTELEMETRY_COLLECTOR_ENDPOINT}
575576
TRACING_OPENTELEMETRY_COLLECTOR_PORT: ${TRACING_OPENTELEMETRY_COLLECTOR_PORT}
576-
577+
DOCKER_API_PROXY_HOST: ${DOCKER_API_PROXY_HOST}
578+
DOCKER_API_PROXY_PASSWORD: ${DOCKER_API_PROXY_PASSWORD}
579+
DOCKER_API_PROXY_PORT: ${DOCKER_API_PROXY_PORT}
580+
DOCKER_API_PROXY_SECURE: ${DOCKER_API_PROXY_SECURE}
581+
DOCKER_API_PROXY_USER: ${DOCKER_API_PROXY_USER}
577582
docker-api-proxy:
578583
image: ${DOCKER_REGISTRY:-itisfoundation}/docker-api-proxy:${DOCKER_IMAGE_TAG:-latest}
579584
init: true
@@ -1367,6 +1372,7 @@ networks:
13671372
labels:
13681373
com.simcore.description: "computational services network"
13691374
docker-api-network:
1375+
name: ${SWARM_STACK_NAME}_docker-api-network
13701376
driver: overlay
13711377
attachable: true
13721378
internal: false

0 commit comments

Comments
 (0)