-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update docker-compose files to use jetty image, remove use of `notebook` and `reverse-proxy` services * netty to jetty, also remove traefik label from all files * Add deephaven port and remove jetty from names, as there is no jetty suffix * Add port 6006 to TensorFlow and PyTorch examples for TensorBoard support * Add latest tag to examples containers
- Loading branch information
Showing
15 changed files
with
70 additions
and
549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,17 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
deephaven: | ||
image: ghcr.io/deephaven/server-slim:latest | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=groovy | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- JAVA_OPTS=-Xmx4g | ||
|
||
examples: | ||
image: ghcr.io/deephaven/examples | ||
image: ghcr.io/deephaven/examples:latest | ||
volumes: | ||
- ./data:/data | ||
command: initialize | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,11 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
deephaven: | ||
image: ghcr.io/deephaven/server-slim:latest | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=groovy | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: | ||
|
||
- JAVA_OPTS=-Xmx4g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,17 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server-all-ai:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=python | ||
deephaven: | ||
image: ghcr.io/deephaven/server-all-ai:latest | ||
ports: | ||
- 6006:6006 | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- JAVA_OPTS=-Xmx4g | ||
|
||
examples: | ||
image: ghcr.io/deephaven/examples:latest | ||
volumes: | ||
- ./data:/data | ||
command: initialize | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,17 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server-nltk:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
deephaven: | ||
image: ghcr.io/deephaven/server-nltk:latest | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=python | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- JAVA_OPTS=-Xmx4g | ||
|
||
examples: | ||
image: ghcr.io/deephaven/examples:latest | ||
volumes: | ||
- ./data:/data | ||
command: initialize | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,18 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server-pytorch:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=python | ||
deephaven: | ||
image: ghcr.io/deephaven/server-pytorch:latest | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- 6006:6006 | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- JAVA_OPTS=-Xmx4g | ||
|
||
examples: | ||
image: ghcr.io/deephaven/examples:latest | ||
volumes: | ||
- ./data:/data | ||
command: initialize | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: |
41 changes: 5 additions & 36 deletions
41
containers/python-examples/SciKit-Learn/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,17 @@ | ||
version: "3.4" | ||
|
||
services: | ||
server: | ||
image: ghcr.io/deephaven/server-sklearn:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
deephaven: | ||
image: ghcr.io/deephaven/server-sklearn:latest | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
volumes: | ||
- ./data:/data | ||
- api-cache:/cache | ||
environment: | ||
- JAVA_TOOL_OPTIONS=-Xmx4g -Ddeephaven.console.type=python | ||
|
||
web: | ||
image: ghcr.io/deephaven/web:${VERSION:-latest} | ||
expose: | ||
- '8080' | ||
volumes: | ||
- ./data:/data | ||
- web-tmp:/tmp | ||
|
||
grpc-proxy: | ||
image: ghcr.io/deephaven/grpc-proxy:${VERSION:-latest} | ||
environment: | ||
- BACKEND_ADDR=server:8080 | ||
depends_on: | ||
- server | ||
expose: | ||
- '8080' | ||
|
||
envoy: | ||
image: ghcr.io/deephaven/envoy:${VERSION:-latest} | ||
depends_on: | ||
- web | ||
- grpc-proxy | ||
- server | ||
ports: | ||
- "${DEEPHAVEN_PORT:-10000}:10000" | ||
- JAVA_OPTS=-Xmx4g | ||
|
||
examples: | ||
image: ghcr.io/deephaven/examples:latest | ||
volumes: | ||
- ./data:/data | ||
command: initialize | ||
|
||
volumes: | ||
web-tmp: | ||
api-cache: |
Oops, something went wrong.