Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deephaven/deephaven-server-docker
Deephaven Server Docker
https://github.com/deephaven/deephaven-server-docker
Last synced: 27 days ago
JSON representation
Deephaven Server Docker
- Host: GitHub
- URL: https://github.com/deephaven/deephaven-server-docker
- Owner: deephaven
- Created: 2022-07-27T17:33:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T15:15:11.000Z (about 1 month ago)
- Last Synced: 2024-12-04T16:26:19.512Z (30 days ago)
- Language: Dockerfile
- Homepage:
- Size: 164 KB
- Stars: 4
- Watchers: 3
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# deephaven-server-docker
This repository produces [Deephaven](https://deephaven.io/) server Docker images with the [deephaven-core releases](https://github.com/deephaven/deephaven-core/releases).
## Quickstart
To get started quickly, simply run:
```bash
docker run \
--rm \
--name deephaven \
-p 10000:10000 \
ghcr.io/deephaven/server:0.37.0
```This will start the server, and the web UI will be available at [http://localhost:10000](http://localhost:10000).
## Images
The following server images are currently being produced:
- `ghcr.io/deephaven/server:0.37.0`
- `ghcr.io/deephaven/server-ui:0.37.0`
- `ghcr.io/deephaven/server-slim:0.37.0`
- `ghcr.io/deephaven/server-all-ai:0.37.0`
- `ghcr.io/deephaven/server-nltk:0.37.0`
- `ghcr.io/deephaven/server-pytorch:0.37.0`
- `ghcr.io/deephaven/server-sklearn:0.37.0`
- `ghcr.io/deephaven/server-tensorflow:0.37.0`### Linux
Images are produced for the `linux/amd64` and `linux/arm64` platforms. The images are based off of the [ubuntu](https://hub.docker.com/_/ubuntu) Docker image.
### Mac
Both the Intel and M1 architectures are supported with the Linux images.
### Windows
The Linux images can be used with the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/). Windows native images are not currently being produced, but may be produced in the future.
## Build
### CI
The images are automatically built and deployed by GitHub Actions CI, see [release-ci.yml](.github/workflows/release-ci.yml).
### Local
For a default, local-only build on your system's platform, run:
```
# Build the default server image:
docker buildx bake -f server.hcl# Build a specific target image:
docker buildx bake -f server.hcl server-all-ai
```See the various hcl files for parameterization options.
## Release
See [RELEASE](RELEASE.md).
## Resources
- [Issues](https://github.com/deephaven/deephaven-server-docker/issues)
- [Deephaven Community Slack](https://deephaven.io/slack)
- [Deephaven Documentation](https://deephaven.io/core/docs/)