Last active
July 5, 2016 19:46
-
-
Save brennv/6714e14984dffe3c08b0262e54ee7897 to your computer and use it in GitHub Desktop.
Example local dev setup with arangodb
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
# Consider adding image: jwilder/nginx-proxy for managing routes | |
version: '2' | |
services: | |
arangodb: | |
image: arangodb/arangodb:3.0.0 | |
ports: | |
- "8529:8529" | |
environment: | |
- ARANGO_NO_AUTH=1 | |
app: | |
build: ./my-app | |
links: | |
- arangodb | |
- api | |
ports: | |
- "3000:3000" | |
api: | |
build: ./my-api | |
links: | |
- arangodb | |
ports: | |
- "5000:5000" | |
core: | |
build: ./my-core | |
links: | |
- arangodb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment