Skip to content

Instantly share code, notes, and snippets.

@crazycode
Created April 24, 2015 08:33
Show Gist options
  • Save crazycode/032e8f5837d278ff819f to your computer and use it in GitHub Desktop.
Save crazycode/032e8f5837d278ff819f to your computer and use it in GitHub Desktop.
fig for gitlab
postgresql:
image: sameersbn/postgresql:9.4
volumes:
- ./postgresql-data:/var/lib/postgresql
environment:
- DB_USER=gitlab
- DB_PASS=secretpassword
- DB_NAME=gitlabhq_production
gitlab:
image: sameersbn/gitlab:7.10.0
volumes:
- ./gitlab-data:/home/git/data
links:
- redis:redisio
- postgresql:postgresql
ports:
- "10080:80"
- "22:22"
redis:
image: sameersbn/redis:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment