Skip to content

Commit 5db924f

Browse files
committed
Update docs and script for new docker image
Updates the documentation and `run-docker-example.sh` script to run with the new docker image for ARM AArch64.
1 parent 96df7aa commit 5db924f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

containers/run-docker-example.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ DOCKER_IMAGE=daphneeu/daphne-dev
2222
DOCKER_TAG=latest_${ARCH}_BASE
2323
#DOCKER_TAG=latest_${ARCH}_CUDA
2424
if [[ "$(arch)" == arm* ]] || [ $(arch) == 'aarch64' ]; then
25-
DOCKER_TAG=latest_ARMV8_BASE
25+
DOCKER_TAG=latest_AArch64
2626
fi
2727

2828
#on some installations docker can only be run with sudo

doc/GettingStarted.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If required, you can find more details for custom setups later in this document.
3333
**Option 1: Use a binary release**
3434

3535
Download and extract the file `daphne-<flavor>-<version>-bin.tgz` from the [release page](https://github.com/daphne-eu/daphne/releases).
36-
It is recommended to use the latest version and to choose the flavor based on your platform and needs (e.g., `X86-64`, `cuda-X86-64`, or `ARMV8`).
36+
It is recommended to use the latest version and to choose the flavor based on your platform and needs (e.g., `X86-64`, `cuda-X86-64`, or `AArch64`).
3737
Using DAPHNE with CUDA requires Nvidia Pascal hardware or newer.
3838

3939
**Option 2: Build from sources**
@@ -132,9 +132,16 @@ The development container image already contains all necessary (¹) dependencies
132132
```bash
133133
docker pull daphneeu/daphne-dev:latest_X86-64_BASE
134134
```
135+
136+
or
137+
138+
```bash
139+
docker pull daphneeu/daphne-dev:latest_AArch64
140+
```
141+
135142
***Hint:** In case of Docker permission errors, try prepending `sudo` to the command.*
136143

137-
***Hint:** You may want to choose another image tag based on your platform and needs, e.g., `latest_X86-64_CUDA` (for GPU support) or `latest_ARMV8_BASE` (for ARM support).*
144+
***Hint:** You may want to choose another image tag based on your platform and needs, e.g., `latest_X86-64_CUDA` (for GPU support) or `latest_AArch64` (for ARM support).*
138145

139146
***Hint:** (¹) TensorFlow and PyTorch are *optional* for DaphneLib and *not included* in the `daphne-dev`container due to their footprint of several gigabytes. Please follow the [instructions](/doc/development/InstallPythonLibsInContainer.md) on installing Python libraries in the `daphne-dev` container if you need these libraries.*
140147

0 commit comments

Comments
 (0)