Update references to Docker images (#1794)

This commit is contained in:
Jonatan Kłosko 2023-03-15 17:30:18 +01:00 committed by GitHub
parent bf77b28601
commit f172acca47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -63,24 +63,24 @@ and also for local usage in case you don't have Elixir installed.
```shell
# Running with the default configuration
docker run -p 8080:8080 -p 8081:8081 --pull always livebook/livebook
docker run -p 8080:8080 -p 8081:8081 --pull always ghcr.io/livebook-dev/livebook
# In order to access and save notebooks directly to your machine
# you can mount a local directory into the container.
# Make sure to specify the user with "-u $(id -u):$(id -g)"
# so that the created files have proper permissions
docker run -p 8080:8080 -p 8081:8081 --pull always -u $(id -u):$(id -g) -v $(pwd):/data livebook/livebook
docker run -p 8080:8080 -p 8081:8081 --pull always -u $(id -u):$(id -g) -v $(pwd):/data ghcr.io/livebook-dev/livebook
# You can configure Livebook using environment variables,
# for all options see the dedicated "Environment variables" section below
docker run -p 8080:8080 -p 8081:8081 --pull always -e LIVEBOOK_PASSWORD="securesecret" livebook/livebook
docker run -p 8080:8080 -p 8081:8081 --pull always -e LIVEBOOK_PASSWORD="securesecret" ghcr.io/livebook-dev/livebook
```
For CUDA support, [see images with the "cuda" tag](https://hub.docker.com/r/livebook/livebook/tags?name=cuda).
For CUDA support, [see images with the "cuda" tag](https://github.com/livebook-dev/livebook/pkgs/container/livebook).
To try out features from the main branch you can alternatively
use the `livebook/livebook:edge` image.
See [Livebook on Docker Hub](https://hub.docker.com/r/livebook/livebook/tags?ordering=last_updated).
use the `ghcr.io/livebook-dev/livebook:edge` image.
See [Livebook images](https://github.com/livebook-dev/livebook/pkgs/container/livebook).
### Embedded devices

View file

@ -9,7 +9,7 @@ elixir=1.14.2
erlang=24.3.4.2
docker buildx build --push --platform linux/amd64,linux/arm64 \
-t livebook/utils:elixir-cuda11.8 \
-t ghcr.io/livebook-dev/utils:elixir-cuda11.8 \
--build-arg ELIXIR_VERSION=$elixir \
--build-arg ERLANG_VERSION=$erlang \
--build-arg CUDA_VERSION=11.8.0 \