Skip to content

Commit 1f532d3

Browse files
authored
All-AI deployments (deephaven#5367)
1 parent 0ca85fb commit 1f532d3

File tree

4 files changed

+75
-0
lines changed

4 files changed

+75
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Overview
2+
3+
A Docker Compose deployment for [Deephaven](https://deephaven.io).
4+
5+
## Features
6+
7+
- [Deephaven](https://deephaven.io)
8+
- [Python](https://python.org/) scripting
9+
- [NLTK](https://www.nltk.org/)
10+
- [PyTorch](https://pytorch.org/)
11+
- [SciKit-Learn](https://scikit-learn.org/stable/)
12+
- [TensorFlow](https://www.tensorflow.org/)
13+
- [Deephaven Examples](https://github.com/deephaven/examples)
14+
15+
## Launch Deephaven
16+
17+
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).
18+
19+
To launch Deephaven, execute the following in your deployment directory:
20+
21+
```bash
22+
curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/TensorFlow/docker-compose.yml
23+
docker compose pull
24+
docker compose up -d
25+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
deephaven:
3+
image: ghcr.io/deephaven/server-all-ai:${VERSION:-latest}
4+
ports:
5+
- "${DEEPHAVEN_PORT:-10000}:10000"
6+
- 6006:6006
7+
volumes:
8+
- ./data:/data
9+
environment:
10+
START_OPTS=-Xmx4g
11+
12+
examples:
13+
image: ghcr.io/deephaven/examples:${VERSION:-latest}
14+
volumes:
15+
- ./data:/data
16+
command: initialize

containers/python/All-AI/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Overview
2+
3+
A Docker Compose deployment for [Deephaven](https://deephaven.io).
4+
5+
## Features
6+
7+
- [Deephaven](https://deephaven.io)
8+
- [Python](https://python.org/) scripting
9+
- [NLTK](https://www.nltk.org/)
10+
- [PyTorch](https://pytorch.org/)
11+
- [SciKit-Learn](https://scikit-learn.org/stable/)
12+
- [TensorFlow](https://www.tensorflow.org/)
13+
14+
## Launch Deephaven
15+
16+
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).
17+
18+
To launch Deephaven, execute the following in your deployment directory:
19+
20+
```bash
21+
curl -O https://raw.githubusercontent.com/deephaven/deephaven-core/main/containers/python/TensorFlow/docker-compose.yml
22+
docker compose pull
23+
docker compose up -d
24+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
services:
2+
deephaven:
3+
image: ghcr.io/deephaven/server-all-ai:${VERSION:-latest}
4+
ports:
5+
- "{DEEPHAVEN_PORT:-10000}:10000"
6+
- 6006:6006
7+
volumes:
8+
- ./data:/data
9+
environment:
10+
- START_OPTS=-Xmx4g

0 commit comments

Comments
 (0)