Skip to content

Instantly share code, notes, and snippets.

@rafaelcaviquioli
Created June 21, 2018 00:28
Show Gist options
  • Save rafaelcaviquioli/334e9f9a0e46361690b6d26add2e2957 to your computer and use it in GitHub Desktop.
Save rafaelcaviquioli/334e9f9a0e46361690b6d26add2e2957 to your computer and use it in GitHub Desktop.
version: '2'
services:
app:
image: node:8.9.4
working_dir: /home/node
ports:
- 8080:8080
volumes:
- ./:/home/node
command: node server.js
depends_on:
- mongo
mongo:
image: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: 1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment