Created
November 28, 2014 06:05
-
-
Save elleryq/5f7041f3017efe6d212a to your computer and use it in GitHub Desktop.
My fig.yml for gitlab-docker.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gitlab: | |
image: sameersbn/gitlab:7.5.1 | |
ports: | |
- "10080:80" | |
- "10022:22" | |
environment: | |
- DB_USER=gitlab | |
- DB_PASS=your_password | |
- DB_NAME=gitlabhq_production | |
- DB_HOST=your_host_ip | |
- DB_PORT=3306 | |
- DB_TYPE=mysql | |
- REDIS_HOST=your_host_ip | |
- REDIS_PORT=6379 | |
- GITLAB_RELATIVE_URL_ROOT=/git | |
- GITLAB_HOST=your_domain_name | |
volumes: | |
- /var/git:/home/git/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment