From f172acca479224ee4236296eca1387a257add9dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Wed, 15 Mar 2023 17:30:18 +0100 Subject: [PATCH] Update references to Docker images (#1794) --- README.md | 12 ++++++------ docker/build_and_push.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 37d36612f..fce53240c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker/build_and_push.sh b/docker/build_and_push.sh index 8192b0462..47142b589 100755 --- a/docker/build_and_push.sh +++ b/docker/build_and_push.sh @@ -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 \