Replies: 1 comment · 1 reply
-
I've tried the 3 container setup with the It seems like there are some changes in the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Having a GitLab instance running on the same machine as the nginx-proxy leads to multiple restarts of the
nginx
process, due to many started and stopped containers.Every started/stopped container, results in a run of
docker-gen
. As the GitLab pipeline containers are just temporary, the changes should/could be ignored bydocker-gen
.Even if the
/etc/nginx/conf.d/default.conf
isn't changed, thenginx
process gets restarted every time. This is causing real overhead and load on the server.A solution might be to re-enable
--only-exposed
:b325dad and a0dee5c
Dou you know the reasons why the
-only-exposed
flag has been removed?Beta Was this translation helpful? Give feedback.
All reactions