Skip to content

Instantly share code, notes, and snippets.

@dronov
Created February 18, 2015 08:16
Show Gist options
  • Save dronov/8c99e3f93c729ffdd481 to your computer and use it in GitHub Desktop.
Save dronov/8c99e3f93c729ffdd481 to your computer and use it in GitHub Desktop.
The fastest way to run Gitlab on linux machine
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
@dronov
Copy link
Author

dronov commented Mar 9, 2015

Fig is deprecated right now.
You should use docker-compose.
👽

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment