Skip to content

Instantly share code, notes, and snippets.

@jeffotoni
Created May 21, 2020 19:52
Show Gist options
  • Save jeffotoni/2e9dd8d7bc21bd96472246e63297831b to your computer and use it in GitHub Desktop.
Save jeffotoni/2e9dd8d7bc21bd96472246e63297831b to your computer and use it in GitHub Desktop.
version: '2'
services:
rethinkdb:
build: /rethinkdb
ports:
- "28015"
volumes:
- /data:/data
command: rethinkdb --bind all --data /data
app:
build: /app
volumes:
- /app/folder:/app
command: node start --production
depends_on: rethinkdb
ports:
- 8080:80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment