Created
February 18, 2015 08:16
-
-
Save dronov/8c99e3f93c729ffdd481 to your computer and use it in GitHub Desktop.
The fastest way to run Gitlab on linux machine
This file contains hidden or 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
postgresql: | |
image: sameersbn/postgresql:9.1-1 | |
environment: | |
- DB_USER=gitlab | |
- DB_PASS=secretpassword | |
- DB_NAME=gitlabhq_production | |
gitlab: | |
image: sameersbn/gitlab:7.4.3 | |
links: | |
- redis:redisio | |
- postgresql:postgresql | |
ports: | |
- "10080:80" | |
- "10022:22" | |
redis: | |
image: sameersbn/redis:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fig is deprecated right now.
You should use docker-compose.
👽