gitlab-docker-letsencrypt
gitlab-docker-letsencrypt copied to clipboard
Gitlab CE + Docker Compose + Let's Encrypt (auto generate/renew)
Hi, I tried to add a runner by adding this in the docker-compose.yml: gitlab-runner1: image: gitlab/gitlab-runner:latest restart: always container_name: gitlab-runner1 hostname: gitlab-runner1 depends_on: - gitlab-letsencrypt volumes: - ./config/gitlab-runner:/etc/gitlab-runner - /var/run/docker.sock:/var/run/docker.sock...
How to restart renewal process manually? How to debug what's wrong?
According to the [Update Recommendations](https://docs.gitlab.com/ee/policy/maintenance.html#upgrade-recommendations) it should be possible to specify the tag to use. Otherwise a ```shell docker-compose down docker-compuse pull docker-compuse up ``` might break all - which...
Hi @steevepay, Thanks for creating this helpful GitLab self-hosting solution! I noticed a couple of configuration patterns that could improve production deployment stability. ## Configuration Findings ### P1: Image Version...