Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml3
-rw-r--r--ci/README.md8
2 files changed, 4 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3437d8066..b4fa9c177 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -77,9 +77,6 @@ flatpak:test:
- apt-get update -qq
- add-apt-repository $FLATPAK_PPA -y
- apt-get update -qq
- # These are temporary needed. Let's Encrypt has changed their root certificate.
- - apt-get install --reinstall ca-certificates
- - git config --global http.sslverify false
- apt-get install -y -qq flatpak-builder flatpak build-essential git-core
- flatpak --user remote-add --if-not-exists flathub $FLATHUB_REPO
script:
diff --git a/ci/README.md b/ci/README.md
index db79d75df..98f3994d4 100644
--- a/ci/README.md
+++ b/ci/README.md
@@ -2,15 +2,15 @@
To update/push images you need permissions for this repository:
-https://cloud.docker.com/u/remmina/repository/docker/remmina/ubuntu
+https://gitlab.com/Remmina/Remmina/container_registry/
To build and push:
```shell
# cd where is the Dockerfile
-# login with your docker account
-docker build -t remmina/ubuntu:18.04 --no-cache --force-rm --compress .
-docker push remmina/ubuntu:18.04
+# login with your Gitlab account and a personal access token
+docker build -t registry.gitlab.com/remmina/remmina/ubuntu:20.04 --no-cache --force-rm --compress .
+docker push registry.gitlab.com/remmina/remmina/ubuntu:20.04
```