diff options
author | Max Wittig <max.wittig95@gmail.com> | 2019-06-10 14:25:51 +0200 |
---|---|---|
committer | Max Wittig <max.wittig95@gmail.com> | 2019-06-10 14:31:42 +0200 |
commit | 95c9b6dd489fc15c7dfceffca909917f4f3d4312 (patch) | |
tree | fb4e6769d24f21f0e238620c56e1a981c92133cc /tools | |
parent | e45a6e2618db30834f732c5a7bc9f1c038c45c31 (diff) | |
download | gitlab-95c9b6dd489fc15c7dfceffca909917f4f3d4312.tar.gz |
chore(ci): add automatic GitLab image pusheschore/enable-gitlab-ci-builds
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Dockerfile-test | 2 | ||||
-rwxr-xr-x | tools/build_test_env.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/Dockerfile-test b/tools/Dockerfile-test index 7d491de..68ef467 100644 --- a/tools/Dockerfile-test +++ b/tools/Dockerfile-test @@ -11,7 +11,7 @@ RUN apt-get update \ tzdata \ && curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | bash \ && apt-get install -qy --no-install-recommends \ - gitlab-ce=11.10.0-ce.0 + gitlab-ce=11.11.2-ce.0 # Manage SSHD through runit RUN mkdir -p /opt/gitlab/sv/sshd/supervise \ diff --git a/tools/build_test_env.sh b/tools/build_test_env.sh index 3185f72..624f879 100755 --- a/tools/build_test_env.sh +++ b/tools/build_test_env.sh @@ -77,7 +77,7 @@ cleanup() { } try docker run --name gitlab-test --detach --publish 8080:80 \ - --publish 2222:22 pythongitlab/test-python-gitlab:latest >/dev/null + --publish 2222:22 registry.gitlab.com/python-gitlab/python-gitlab:test >/dev/null LOGIN='root' PASSWORD='5iveL!fe' |