Created
June 9, 2015 00:03
-
-
Save chewmanfoo/41fcf7b0bcf155c9305a to your computer and use it in GitHub Desktop.
openldap won't start only in docker-compose...
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
| escdb: | |
| image: postgres | |
| ports: | |
| - "5432" | |
| escldap: | |
| image: osixia/openldap | |
| ports: | |
| - "389:389" | |
| - "636:636" | |
| escsvn: | |
| image: krisdavison/svn-server:v2.0 | |
| command: ./startup.sh | |
| ports: | |
| - "80:80" | |
| escweb: | |
| build: . | |
| command: bundle exec rails s -p 3100 -b '0.0.0.0' | |
| volumes: | |
| - .:/myapp | |
| ports: | |
| - "3100:3100" | |
| links: | |
| - escdb | |
| - escsvn | |
| - escldap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment