You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The configuration method in Official Tutorial does not apply to this image, how to configure the Container metadata registry database painlessly after using this image?
The text was updated successfully, but these errors were encountered:
Set following configuration parameters in your configuration file (environment section in docker-compose.yml, env section in gitlab-rc.yml for example):
In the source-installed environment provided by this image (sameersbn/gitlab), settings must be written in /home/git/gitlab/config/gitlab.yml instead of /etc/gitlab/gitlab.rb that is used in omnibus-installation.
sameersbn/gitlab provides a file that replaces the values in this configuration file with placeholders. When the container is started, these placeholders are rewritten according to the values of the environment variables.
This is documented in README.md (use links on each configuration parameter)
Note that our configuration parameters are not up to date - some parameters may be slate, some upstream configurations may not have a corresponding parameter.
For example, we have not been able to support user-password authentication yet (entry registry['database'].user and .password cannot be set).
Please submit a pull request to update configuration files or wait for the update. To submit a PR, please refer to the merged pull request (#2953 for example).
Alternatively, you may be able to set these parameters by
launch container (docker run, docker compose up and so on)
log into container as user git (docker exec -it -u git your-gitlab-container-name /bin/bash)
edit gitlab.yml directly (note that most of major text editors are not available in container)
log out from container
log into container as user root (docker exec -it your-gitlab-container-name /bin/bash)
reload gitlab services by executing supervisorctl reload
The configuration method in Official Tutorial does not apply to this image, how to configure the Container metadata registry database painlessly after using this image?
The text was updated successfully, but these errors were encountered: