Skip to content

Instantly share code, notes, and snippets.

@brennv
Last active July 5, 2016 19:46
Show Gist options
  • Save brennv/6714e14984dffe3c08b0262e54ee7897 to your computer and use it in GitHub Desktop.
Save brennv/6714e14984dffe3c08b0262e54ee7897 to your computer and use it in GitHub Desktop.
Example local dev setup with arangodb
# 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