Created
March 17, 2016 04:22
-
-
Save lawley/6e32bed348a2dc741ad5 to your computer and use it in GitHub Desktop.
Simple docker compose config for spinning up an Ontoserver instance.
This file contains 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
version: "2" | |
services: | |
onto: | |
image: "aehrc/ontoserver" | |
links: | |
- "db" | |
ports: | |
- "8080:80" | |
db: | |
image: "postgres" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment