From b3d9185a3c2bfc542f5dfbae08b0efc0841953ef Mon Sep 17 00:00:00 2001 From: Stefano Alberto Russo <stefano.russo@gmail.com> Date: Wed, 19 Jan 2022 22:53:59 +0100 Subject: [PATCH] Updated README and scripts with new registry URL. --- README.md | 6 +++--- push_all.sh | 14 +++++++------- tag_all.sh | 14 +++++++------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 8719b17..e644c9a 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ All the containers support changing the default port using the `BASE_PORT` envir You can eithe directly run the containers, e.g.: - docker run -p8590:8590 git.ia2.inaf.it:5050/exact/swc/basicdesktop:v0.3.0 + docker run -p8590:8590 registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 or use tham as base containers for your own ones: - FROM git.ia2.inaf.it:5050/exact/swc/basicdesktop:v0.3.0 + FROM registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 ### Supported engines @@ -49,4 +49,4 @@ You can eithe directly run the containers, e.g.: However, beware some permission errors which may arise after extending them and installing extra software, in particular with Singularity. You can add a line like this at the end of your Dockerfile to be sure the home folder is always set as writable by anyone (required for these containers to work with Singularity): # Fix home permissions - RUN chmod 777 /home \ No newline at end of file + RUN chmod 777 /home diff --git a/push_all.sh b/push_all.sh index a1ba3b9..5b0d499 100755 --- a/push_all.sh +++ b/push_all.sh @@ -1,8 +1,8 @@ #!/bin/bash -docker push git.ia2.inaf.it:5050/exact/swc/base:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/ssh:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/xcalc:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/x11web:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/minimaldesktop:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/basicdesktop:v0.3.0 -docker push git.ia2.inaf.it:5050/exact/swc/jupyternotebook:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/base:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/ssh:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/xcalc:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/x11web:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 +docker push registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0 diff --git a/tag_all.sh b/tag_all.sh index 8d19198..8de5301 100755 --- a/tag_all.sh +++ b/tag_all.sh @@ -1,8 +1,8 @@ #!/bin/bash -docker tag base git.ia2.inaf.it:5050/exact/swc/base:v0.3.0 -docker tag ssh git.ia2.inaf.it:5050/exact/swc/ssh:v0.3.0 -docker tag xcalc git.ia2.inaf.it:5050/exact/swc/xcalc:v0.3.0 -docker tag x11web git.ia2.inaf.it:5050/exact/swc/x11web:v0.3.0 -docker tag minimaldesktop git.ia2.inaf.it:5050/exact/swc/minimaldesktop:v0.3.0 -docker tag basicdesktop git.ia2.inaf.it:5050/exact/swc/basicdesktop:v0.3.0 -docker tag jupyternotebook git.ia2.inaf.it:5050/exact/swc/jupyternotebook:v0.3.0 +docker tag base registry.ict.inaf.it/exact/swc/base:v0.3.0 +docker tag ssh registry.ict.inaf.it/exact/swc/ssh:v0.3.0 +docker tag xcalc registry.ict.inaf.it/exact/swc/xcalc:v0.3.0 +docker tag x11web registry.ict.inaf.it/exact/swc/x11web:v0.3.0 +docker tag minimaldesktop registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0 +docker tag basicdesktop registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 +docker tag jupyternotebook registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0 -- GitLab