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`.