From 4f5cc3bc5177d59b575cc498667f84d52b26af9b Mon Sep 17 00:00:00 2001 From: JJ Brosnan <84038776+jjbrosnan@users.noreply.github.com> Date: Wed, 17 Jan 2024 11:35:45 -0500 Subject: [PATCH] Add Groovy container w/ examples and Redpanda (#4673) * Groovy container w/ redpanda and examples. Also README. * Updates from Devin's review - remove apicurio from docker-compose files and change docker-compose to docker compose in shell commands * Updates from Devin's review * Make consistent with Redpanda --- containers/groovy-examples-redpanda/README.md | 22 ++++++++++++ .../docker-compose.yml | 34 ++++++++++++++++++ containers/groovy-examples/README.md | 8 ++--- containers/groovy-redpanda/README.md | 19 ++++++++++ containers/groovy-redpanda/docker-compose.yml | 28 +++++++++++++++ containers/groovy/README.md | 10 +++--- containers/python-examples-redpanda/README.md | 12 +++---- .../docker-compose.yml | 35 ++++++------------- containers/python-examples/All-AI/README.md | 29 --------------- .../python-examples/All-AI/docker-compose.yml | 17 --------- containers/python-examples/NLTK/README.md | 8 ++--- containers/python-examples/PyTorch/README.md | 8 ++--- .../python-examples/SciKit-Learn/README.md | 8 ++--- .../python-examples/TensorFlow/README.md | 8 ++--- containers/python-examples/base/README.md | 8 ++--- containers/python-redpanda/README.md | 21 +++++++++++ containers/python-redpanda/docker-compose.yml | 28 +++++++++++++++ containers/python/All-AI/README.md | 28 --------------- containers/python/All-AI/docker-compose.yml | 11 ------ containers/python/NLTK/README.md | 8 ++--- containers/python/PyTorch/README.md | 8 ++--- containers/python/SciKit-Learn/README.md | 8 ++--- containers/python/TensorFlow/README.md | 8 ++--- containers/python/base/README.md | 8 ++--- 24 files changed, 204 insertions(+), 178 deletions(-) create mode 100644 containers/groovy-examples-redpanda/README.md create mode 100644 containers/groovy-examples-redpanda/docker-compose.yml create mode 100644 containers/groovy-redpanda/README.md create mode 100644 containers/groovy-redpanda/docker-compose.yml delete mode 100644 containers/python-examples/All-AI/README.md delete mode 100644 containers/python-examples/All-AI/docker-compose.yml create mode 100644 containers/python-redpanda/README.md create mode 100644 containers/python-redpanda/docker-compose.yml delete mode 100644 containers/python/All-AI/README.md delete mode 100644 containers/python/All-AI/docker-compose.yml diff --git a/containers/groovy-examples-redpanda/README.md b/containers/groovy-examples-redpanda/README.md new file mode 100644 index 00000000000..b8abde56d1e --- /dev/null +++ b/containers/groovy-examples-redpanda/README.md @@ -0,0 +1,22 @@ +# Overview + +A Docker Compose deployment for [Deephaven](https://deephaven.io). + +## Features + +- [Deephaven](https://deephaven.io) +- [Groovy](https://groovy-lang.org/) scripting +- [Deephaven Examples](https://github.com/deephaven/examples) +- [Redpanda](https://vectorized.io/), a Kakfa-compatible event streaming platform. + +## Launch Deephaven + +For instructions on launching and using Kafka in Deephaven, see[How to connect to a Kafka stream](https://deephaven.io/core/groovy/docs/how-to-guides/data-import-export/kafka-stream/). For instructions on getting started with Deephaven, see the [Quickstart](https://deephaven.io/core/groovy/docs/tutorials/quickstart). + +To launch Deephaven, execute the following in your deployment directory: + +```bash +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy-examples-redpanda/docker-compose.yml +docker compose pull +docker compose up -d +``` diff --git a/containers/groovy-examples-redpanda/docker-compose.yml b/containers/groovy-examples-redpanda/docker-compose.yml new file mode 100644 index 00000000000..bc0a0484bc7 --- /dev/null +++ b/containers/groovy-examples-redpanda/docker-compose.yml @@ -0,0 +1,34 @@ +version: "3.4" + +services: + deephaven: + image: ghcr.io/deephaven/server-slim:${VERSION:-latest} + ports: + - "${DEEPHAVEN_PORT:-10000}:10000" + volumes: + - ./data:/data + environment: + - START_OPTS=-Xmx4g + + examples: + image: ghcr.io/deephaven/examples + volumes: + - ./data:/data + command: initialize + + redpanda: + command: + - redpanda + - start + - --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092 + - --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092 + - --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081 + - --smp 1 + - --memory 1G + - --mode dev-container + image: docker.redpanda.com/redpandadata/redpanda:v23.2.18 + ports: + - 8081:8081 + - 18081:18081 + - 9092:9092 + - 19092:19092 diff --git a/containers/groovy-examples/README.md b/containers/groovy-examples/README.md index d28e959ec48..2d295145a99 100644 --- a/containers/groovy-examples/README.md +++ b/containers/groovy-examples/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy-examples/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy-examples/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/groovy-redpanda/README.md b/containers/groovy-redpanda/README.md new file mode 100644 index 00000000000..8fe9215a8ec --- /dev/null +++ b/containers/groovy-redpanda/README.md @@ -0,0 +1,19 @@ +# Overview + +## Features + +- [Deephaven](https://deephaven.io) +- [Groovy](https://groovy-lang.org/) scripting +- [Redpanda](https://vectorized.io/), a Kafka-compatible event streaming platform + +## Launch Deephaven + +For instructions on launching and using Kafka in Deephaven, see[How to connect to a Kafka stream](https://deephaven.io/core/groovy/docs/how-to-guides/data-import-export/kafka-stream/). For instructions on getting started with Deephaven, see the [Quickstart](https://deephaven.io/core/groovy/docs/tutorials/quickstart). + +To launch Deephaven, execute the following in your deployment directory: + +```sh +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy-redpanda/docker-compose.yml +docker compose pull +docker compose up -d +``` diff --git a/containers/groovy-redpanda/docker-compose.yml b/containers/groovy-redpanda/docker-compose.yml new file mode 100644 index 00000000000..1cb7594a8ff --- /dev/null +++ b/containers/groovy-redpanda/docker-compose.yml @@ -0,0 +1,28 @@ +version: "3.4" + +services: + deephaven: + image: ghcr.io/deephaven/server-slim:${VERSION:-latest} + ports: + - "${DEEPHAVEN_PORT:-10000}:10000" + volumes: + - ./data:/data + environment: + - START_OPTS=-Xmx4g + + redpanda: + command: + - redpanda + - start + - --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092 + - --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092 + - --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081 + - --smp 1 + - --memory 1G + - --mode dev-container + image: docker.redpanda.com/redpandadata/redpanda:v23.2.18 + ports: + - 8081:8081 + - 18081:18081 + - 9092:9092 + - 19092:19092 diff --git a/containers/groovy/README.md b/containers/groovy/README.md index 61e4a8a0581..eacfa216d55 100644 --- a/containers/groovy/README.md +++ b/containers/groovy/README.md @@ -10,14 +10,12 @@ A Docker Compose deployment for [Deephaven](https://deephaven.io). ## Launch Deephaven -For launch instructions, see the [README](https://github.com/deephaven/deephaven-core/#launch-groovy--java). For full instructions to work with Deephaven, see the [Quick start](https://deephaven.io/core/docs/tutorials/quickstart). +For launch instructions, see the [README](https://github.com/deephaven/deephaven-core/#launch-groovy--java). For full instructions to work with Deephaven, see the [Quick start](https://deephaven.io/core/groovy/docs/tutorials/quickstart). To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/groovy/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples-redpanda/README.md b/containers/python-examples-redpanda/README.md index 06f41af2e5c..1082408865f 100644 --- a/containers/python-examples-redpanda/README.md +++ b/containers/python-examples-redpanda/README.md @@ -7,18 +7,16 @@ A Docker Compose deployment for [Deephaven](https://deephaven.io). - [Deephaven](https://deephaven.io) - [Python](https://python.org/) scripting - [Deephaven Examples](https://github.com/deephaven/examples) -- [Redpanda](https://vectorized.io/), a Kakfa-compatible event streaming platform. +- [Redpanda](https://vectorized.io/), a Kakfa-compatible event streaming platform ## Launch Deephaven -For instructions on launching and using Kafka, see [Kafka in Deephaven: an introduction](https://deephaven.io/core/docs/conceptual/kafka-in-deephaven/) and [Simple Kafka import](https://deephaven.io/core/docs/how-to-guides/kafka-simple/). For full instructions to work with Deephaven, see the [Quick start](https://deephaven.io/core/docs/tutorials/quickstart). +For instructions on launching and using Kafka in Deephaven, see[How to connect to a Kafka stream](https://deephaven.io/core/groovy/docs/how-to-guides/data-import-export/kafka-stream/). For instructions on getting started with Deephaven, see the [Quickstart](https://deephaven.io/core/docs/tutorials/quickstart). To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples-redpanda/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples-redpanda/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples-redpanda/docker-compose.yml b/containers/python-examples-redpanda/docker-compose.yml index 6bb3d79a8c4..218494e5293 100644 --- a/containers/python-examples-redpanda/docker-compose.yml +++ b/containers/python-examples-redpanda/docker-compose.yml @@ -20,30 +20,15 @@ services: command: - redpanda - start - - --smp - - '1' - - --reserve-memory - - 0M - - --overprovisioned - - --node-id - - '0' - - --kafka-addr - - PLAINTEXT://0.0.0.0:29092,OUTSIDE://0.0.0.0:9092 - - --advertise-kafka-addr - - PLAINTEXT://redpanda:29092,OUTSIDE://localhost:9092 - image: docker.redpanda.com/vectorized/redpanda:v22.2.2 + - --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092 + - --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092 + - --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081 + - --smp 1 + - --memory 1G + - --mode dev-container + image: docker.redpanda.com/redpandadata/redpanda:v23.2.18 ports: + - 8081:8081 + - 18081:18081 - 9092:9092 - - 29092:29092 - - registry: - image: apicurio/apicurio-registry-mem:1.2.2.Final - expose: - - 8080 - ports: - - "8081:8080" - environment: - QUARKUS_PROFILE: prod - KAFKA_BOOTSTRAP_SERVERS: redpanda:9092 - APPLICATION_ID: registry_id - APPLICATION_SERVER: localhost:9000 + - 19092:19092 diff --git a/containers/python-examples/All-AI/README.md b/containers/python-examples/All-AI/README.md deleted file mode 100644 index 9226185282f..00000000000 --- a/containers/python-examples/All-AI/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# Overview - -A Docker Compose deployment for [Deephaven](https://deephaven.io). - -Contains all the python-based AI libraries together in one environment. - -## Features - -- [Deephaven](https://deephaven.io) -- [Python](https://python.org/) scripting -- [PyTorch](https://pytorch.org/) -- [TensorFlow](https://www.tensorflow.org/) -- [NLTK](https://www.nltk.org/) -- [SciKit-Learn](https://scikit-learn.org/stable/) -- [Deephaven Examples](https://github.com/deephaven/examples) - -## Launch Deephaven - -For launch instructions, see the [README](https://github.com/deephaven/deephaven-core#launch-python-with-example-data). For full instructions to work with Deephaven, see the [Quick start](https://deephaven.io/core/docs/tutorials/quickstart). - -To launch Deephaven, execute the following in your deployment directory: - -```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/All-AI/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d -``` diff --git a/containers/python-examples/All-AI/docker-compose.yml b/containers/python-examples/All-AI/docker-compose.yml deleted file mode 100644 index 69401b7c849..00000000000 --- a/containers/python-examples/All-AI/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3.4" - -services: - deephaven: - image: ghcr.io/deephaven/server-all-ai:${VERSION:-latest} - ports: - - "${DEEPHAVEN_PORT:-10000}:10000" - volumes: - - ./data:/data - environment: - - START_OPTS=-Xmx4g - - examples: - image: ghcr.io/deephaven/examples:${VERSION:-latest} - volumes: - - ./data:/data - command: initialize diff --git a/containers/python-examples/NLTK/README.md b/containers/python-examples/NLTK/README.md index ddaedb2f0f6..9c84a31c5a6 100644 --- a/containers/python-examples/NLTK/README.md +++ b/containers/python-examples/NLTK/README.md @@ -16,9 +16,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/NLTK/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/NLTK/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples/PyTorch/README.md b/containers/python-examples/PyTorch/README.md index 079bd1610a0..c2cae1968ce 100644 --- a/containers/python-examples/PyTorch/README.md +++ b/containers/python-examples/PyTorch/README.md @@ -16,9 +16,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/PyTorch/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/PyTorch/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples/SciKit-Learn/README.md b/containers/python-examples/SciKit-Learn/README.md index 6b743ee3370..bc8d5253fed 100644 --- a/containers/python-examples/SciKit-Learn/README.md +++ b/containers/python-examples/SciKit-Learn/README.md @@ -16,9 +16,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/SciKit-Learn/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/SciKit-Learn/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples/TensorFlow/README.md b/containers/python-examples/TensorFlow/README.md index 41e2a0c1c53..e31fdbdb0f8 100644 --- a/containers/python-examples/TensorFlow/README.md +++ b/containers/python-examples/TensorFlow/README.md @@ -16,9 +16,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/TensorFlow/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/TensorFlow/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-examples/base/README.md b/containers/python-examples/base/README.md index 37e4616e306..efbe018a81f 100644 --- a/containers/python-examples/base/README.md +++ b/containers/python-examples/base/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/base/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-examples/base/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python-redpanda/README.md b/containers/python-redpanda/README.md new file mode 100644 index 00000000000..5e7645bb74b --- /dev/null +++ b/containers/python-redpanda/README.md @@ -0,0 +1,21 @@ +# Overview + +A Docker Compose deployment for [Deephaven](https://deephaven.io). + +## Features + +- [Deephaven](https://deephaven.io) +- [Python](https://python.org) scripting +- [Redpanda](https://vectorized.io/), a Kafka-compatible event streaming platform + +## Launch Deephaven + +For instructions on launching and using Kafka, see [How to connect to a Kafka stream](https://deephaven.io/core/docs/how-to-guides/data-import-export/kafka-stream/). For instructions on getting started with Deephaven, see the [Quickstart](https://deephaven.io/core/docs/tutorials/quickstart). + +To launch Deephaven, execute the following in your deployment directory: + +```sh +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python-redpanda/docker-compose.yml +docker compose pull +docker compose up -d +``` diff --git a/containers/python-redpanda/docker-compose.yml b/containers/python-redpanda/docker-compose.yml new file mode 100644 index 00000000000..acbccaa7560 --- /dev/null +++ b/containers/python-redpanda/docker-compose.yml @@ -0,0 +1,28 @@ +version: "3.4" + +services: + deephaven: + image: ghcr.io/deephaven/server:${VERSION:-latest} + ports: + - "${DEEPHAVEN_PORT:-10000}:10000" + volumes: + - ./data:/data + environment: + - START_OPTS=-Xmx4g + + redpanda: + command: + - redpanda + - start + - --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092 + - --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092 + - --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081 + - --smp 1 + - --memory 1G + - --mode dev-container + image: docker.redpanda.com/redpandadata/redpanda:v23.2.18 + ports: + - 8081:8081 + - 18081:18081 + - 9092:9092 + - 19092:19092 diff --git a/containers/python/All-AI/README.md b/containers/python/All-AI/README.md deleted file mode 100644 index cf175c740c4..00000000000 --- a/containers/python/All-AI/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# Overview - -A Docker Compose deployment for [Deephaven](https://deephaven.io). - -Contains all the python-based AI libraries together in one environment. - -## Features - -- [Deephaven](https://deephaven.io) -- [Python](https://python.org/) scripting -- [PyTorch](https://pytorch.org/) -- [TensorFlow](https://www.tensorflow.org/) -- [NLTK](https://www.nltk.org/) -- [SciKit-Learn](https://scikit-learn.org/stable/) - -## Launch Deephaven - -For launch instructions, see the [README](https://github.com/deephaven/deephaven-core#launch-python-with-example-data). For full instructions to work with Deephaven, see the [Quick start](https://deephaven.io/core/docs/tutorials/quickstart). - -To launch Deephaven, execute the following in your deployment directory: - -```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/All-AI/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d -``` diff --git a/containers/python/All-AI/docker-compose.yml b/containers/python/All-AI/docker-compose.yml deleted file mode 100644 index f2cd6522fbb..00000000000 --- a/containers/python/All-AI/docker-compose.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: "3.4" - -services: - deephaven: - image: ghcr.io/deephaven/server-all-ai:${VERSION:-latest} - ports: - - "${DEEPHAVEN_PORT:-10000}:10000" - volumes: - - ./data:/data - environment: - - START_OPTS=-Xmx4g diff --git a/containers/python/NLTK/README.md b/containers/python/NLTK/README.md index 3ebe51dc894..54e608603ef 100644 --- a/containers/python/NLTK/README.md +++ b/containers/python/NLTK/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/NLTK/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/NLTK/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python/PyTorch/README.md b/containers/python/PyTorch/README.md index 0822c21dd54..3e276f39965 100644 --- a/containers/python/PyTorch/README.md +++ b/containers/python/PyTorch/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/PyTorch/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/PyTorch/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python/SciKit-Learn/README.md b/containers/python/SciKit-Learn/README.md index 6ecc68230b8..9ddecaec399 100644 --- a/containers/python/SciKit-Learn/README.md +++ b/containers/python/SciKit-Learn/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/SciKit-Learn/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/SciKit-Learn/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python/TensorFlow/README.md b/containers/python/TensorFlow/README.md index 01f421a3dea..b208b794515 100644 --- a/containers/python/TensorFlow/README.md +++ b/containers/python/TensorFlow/README.md @@ -15,9 +15,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/TensorFlow/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/TensorFlow/docker-compose.yml +docker compose pull +docker compose up -d ``` diff --git a/containers/python/base/README.md b/containers/python/base/README.md index 5e90f35377a..c5e62a0a70a 100644 --- a/containers/python/base/README.md +++ b/containers/python/base/README.md @@ -14,9 +14,7 @@ For launch instructions, see the [README](https://github.com/deephaven/deephaven To launch Deephaven, execute the following in your deployment directory: ```bash -compose_file=https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/base/docker-compose.yml -curl -O "${compose_file}" - -docker-compose pull -docker-compose up -d +curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/base/docker-compose.yml +docker compose pull +docker compose up -d ```