Skip to content
Snippets Groups Projects
Commit c26c3b9d authored by Marcel Krüger's avatar Marcel Krüger
Browse files

refactor(docker): refactor docker-compose files

parent c1f9dfd8
Branches
No related tags found
No related merge requests found
version: "3"
services:
insite-access-node:
build: ./access-node
ports:
- "8080:8080"
depends_on:
- "insite-nest-module"
command: ["http://insite-nest-module:9000"]
insite-nest-module:
build: ./nest-module
ports:
- "5000:5000"
- "9000-9005:9000-9005"
- "18080:18080"
environment:
INSITE_DOCKER_USE_NEST_SERVER: 0
NEST_SERVER_HOST: "0.0.0.0"
NEST_SERVER_MODULES: "nest,numpy"
NEST_SERVER_PORT: 5000
NEST_SERVER_RESTRICTION_OFF: 1
NEST_SERVER_STDOUT: 1
...@@ -2,22 +2,29 @@ version: "3" ...@@ -2,22 +2,29 @@ version: "3"
services: services:
insite-access-node: insite-access-node:
build: ./access-node image:
registry.git-ce.rwth-aachen.de/vr-vis/vr-group/in-situ-pipeline/insite/insite-access-node
ports: ports:
- "8080:8080" - "52056:52056" # depends_on:
depends_on: - "9011:9011" # depends_on:
- "insite-nest-module" environment:
command: ["http://insite-nest-module:9000"] INSITE_NEST_BASE_URL: "insite-nest-module"
INSITE_ARBOR_BASE_URL: "arbor-module"
insite-nest-module: nest-example:
build: ./nest-module image:
ports: registry.git-ce.rwth-aachen.de/vr-vis/vr-group/in-situ-pipeline/insite/insite-nest-example
- "5000:5000"
- "9000-9005:9000-9005" tvb-example:
image:
registry.git-ce.rwth-aachen.de/vr-vis/vr-group/in-situ-pipeline/insite/insite-tvb-example
environment: environment:
INSITE_DOCKER_USE_NEST_SERVER: 1 INSITE_ACCESS_NODE_URL: "insite-access-node"
NEST_SERVER_HOST: "0.0.0.0" depends_on:
NEST_SERVER_MODULES: "nest,numpy" - insite-access-node
NEST_SERVER_PORT: 5000
NEST_SERVER_RESTRICTION_OFF: 1 arbor-example:
NEST_SERVER_STDOUT: 1 image:
registry.git-ce.rwth-aachen.de/vr-vis/vr-group/in-situ-pipeline/insite/insite-arbor-example
depends_on:
- insite-access-node
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment