Skip to content

Instantly share code, notes, and snippets.

@chewmanfoo
Created June 9, 2015 00:03
Show Gist options
  • Select an option

  • Save chewmanfoo/41fcf7b0bcf155c9305a to your computer and use it in GitHub Desktop.

Select an option

Save chewmanfoo/41fcf7b0bcf155c9305a to your computer and use it in GitHub Desktop.
openldap won't start only in docker-compose...
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