From 9c655dd3950416e168051c03d18914ad3e2ae921 Mon Sep 17 00:00:00 2001 From: benoit128 Date: Thu, 5 Sep 2024 16:18:30 +0200 Subject: [PATCH] docker: update account --- .github/workflows/build-docker.yml | 2 +- docs/developers/Docker/UsingDocker.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index c1b7f953a..7731342af 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -33,5 +33,5 @@ jobs: with: context: . push: true - tags: hystrath/cassiopee:${{ github.ref_name }} + tags: cassiopee486/cassiopee:${{ github.ref_name }} diff --git a/docs/developers/Docker/UsingDocker.md b/docs/developers/Docker/UsingDocker.md index 5f61491fd..5f6456e3e 100644 --- a/docs/developers/Docker/UsingDocker.md +++ b/docs/developers/Docker/UsingDocker.md @@ -30,7 +30,7 @@ groups ${USER} - Please pull the official image of Cassiopee from DockerHub ```sh -docker pull cassiopee/cassiopee: +docker pull cassiopee486/cassiopee: ``` where _tag_ is a version tag such as `v4.0b` (in the remainder of these notes, `v4.0b` is used). @@ -50,7 +50,7 @@ docker images ```sh xhost +local:docker -docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -v /dev/dri:/dev/dri -e DISPLAY=unix$DISPLAY cassiopee/cassiopee:v4.0b +docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -v /dev/dri:/dev/dri -e DISPLAY=unix$DISPLAY cassiopee486/cassiopee:v4.0b ``` and the instance of the container will be removed after it execution thanks to `--rm`.