my-notes

gitlab CI/CD

✏️

test this

https://docs.gitlab.com/ee/user/project/pages/getting_started/pages_from_scratch.html

GitLab tricks

Add SSH key to a GitLab account

Allowing communication with an insecure registry

[It’s actually a dockerd trick, but still useful to stay here.]

When using a docker registry with no hash:

services:
#  - name: docker:19.03.12-dind
#    entrypoint: ["dockerd-entrypoint.sh"]
    command: ["--insecure-registry=registry-domain-name-1", "--insecure-registry=registry-domain-name-2"]

Questions?