diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-04-17 16:34:13 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-04-17 16:34:13 +0200 |
commit | 30fbfdcfcdba37d421970d6a730f3e816b95f235 (patch) | |
tree | eff71138b821bb4ffdc9fa4aa8a5f579cc210a75 /.gitlab-ci | |
parent | c48f60a5d9576736d86d1ef381c3e18ce7bab9ea (diff) | |
download | pygobject-30fbfdcfcdba37d421970d6a730f3e816b95f235.tar.gz |
gitlab-ci: move docker images to gitlab.gnome.org
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/README.rst | 3 | ||||
-rwxr-xr-x | .gitlab-ci/run-docker-old.sh | 2 | ||||
-rwxr-xr-x | .gitlab-ci/run-docker.sh | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci/README.rst b/.gitlab-ci/README.rst index 107abf0e..3ebab30d 100644 --- a/.gitlab-ci/README.rst +++ b/.gitlab-ci/README.rst @@ -1 +1,2 @@ -The Dockerfile is available at https://hub.docker.com/r/lazka/pygobject/ +The images are available at +https://gitlab.gnome.org/GNOME/pygobject/container_registry diff --git a/.gitlab-ci/run-docker-old.sh b/.gitlab-ci/run-docker-old.sh index bdd6e54d..7b916958 100755 --- a/.gitlab-ci/run-docker-old.sh +++ b/.gitlab-ci/run-docker-old.sh @@ -2,7 +2,7 @@ set -e -TAG="lazka/pygobject:pyenv-old" +TAG="registry.gitlab.gnome.org/gnome/pygobject/old:v2" sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \ --file "Dockerfile.old" . diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh index 5f8b7ea7..23f9fee3 100755 --- a/.gitlab-ci/run-docker.sh +++ b/.gitlab-ci/run-docker.sh @@ -2,7 +2,7 @@ set -e -TAG="lazka/pygobject:v3" +TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v4" sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \ --file "Dockerfile" . |