https://github.com/accenture/adop-gitlab
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.6%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: Accenture
- License: apache-2.0
- Language: Shell
- Default Branch: master
- Size: 11.7 KB
Statistics
- Stars: 1
- Watchers: 3
- Forks: 7
- Open Issues: 0
- Releases: 2
Metadata Files
README.md
Supported tags and respective Dockerfile links
What is adop-GitLab?
adop-gitlab is a wrapper for the official GitLab image. It has primarily been built to extended configuration and integrate with the ADOP platform. GitLab is a git repository tool for source code versioning and management.
How to use this image
If you plan to run only Gitlab please use offical Gitlab image. This image you need to run with adop-docker-compose.
The following assumes that PostgreSQL, Redis and OpenLDAP are running.
The following command will run adop-gitlab and connect it to PostgreSQL, Redis and OpenLDAP
With Docker compose you can easily configure, install, and upgrade your Docker-based GitLab installation.
1. Install Docker Compose
2. Create a docker-compose.yml file
gitlab:
container_name: gitlab
restart: always
image: accenture/adop-gitlab:VERSION
expose:
- "80"
- "22"
environment:
INITIAL_ADMIN_USER: ${INITIAL_ADMIN_USER}
INITIAL_ADMIN_PASSWORD: ${INITIAL_ADMIN_PASSWORD}
JENKINS_USER: ${JENKINS_USER}
JENKINS_PASSWORD: ${JENKINS_PASSWORD}
GITLAB_OMNIBUS_CONFIG: |
external_url "http://<local-ip>/gitlab"
postgresql['enable'] = false
gitlab_rails['db_username'] = "gitlab"
gitlab_rails['db_password'] = "gitlab"
gitlab_rails['db_host'] = "gitlab-postgresql"
gitlab_rails['db_port'] = "5432"
gitlab_rails['db_database'] = "gitlabhq-production"
gitlab_rails['db_adapter'] = 'postgresql'
gitlab_rails['db_encoding'] = 'utf8'
# Redis Configuration
redis['enable'] = false
gitlab_rails['redis_host'] = 'gitlab-redis'
gitlab_rails['redis_port'] = '6379'
# LDAP Configuration
gitlab_rails['ldap_enabled'] = true
gitlab_rails['ldap_servers'] = YAML.load <<-'EOS'
main:
label: 'LDAP'
host: 'ldap'
port: 389
uid: 'uid'
method: 'plain'
bind_dn: '<ldap-manager-dn>'
password: '<ldap-password>'
active_directory: true
allow_username_or_email_login: false
block_auto_created_users: false
base: '<ldap-full-domain>'
signin_enabled: false
EOS
Runtime configuration can be provided using environment variable:
- GITLABOMNIBUSCONFIG, This variable can contain any gitlab.rb setting and will be evaluated before loading the container’s gitlab.rb file. That way you can easily configure GitLab’s external URL, make any database configuration. Omnibus settings.
- INITIALADMINUSER, the username for the admin user.
- INITIALADMINPASSWORD, the password for the initial admin user.
- JENKINS_USER, the username Jenkins will use to connect to Gitlab. Default to Jenkins.
- JENKINS_PASSWORD, the password Jenkins will use to connect to Gitlab. Default to jenkins.
License
Please view licence information for the software contained on this image.
User feedback
Documentation
Documentation is available in the GitLab documentation page.
Issues
If you have any problems with or questions about this image, please contact us through a GitHub issue.
Contribute
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.
Owner
- Name: Accenture
- Login: Accenture
- Kind: organization
- Website: https://accenture.github.io
- Repositories: 185
- Profile: https://github.com/Accenture
Accenture Github site
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 0
- Total pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: 1 day
- Total issue authors: 0
- Total pull request authors: 2
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
- marisbahtins (1)
- NkolasN (1)