Skip to content

Instantly share code, notes, and snippets.

@sheerun
Created August 2, 2016 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sheerun/474c852350c217fbdf0c9bd954ec7c3f to your computer and use it in GitHub Desktop.
Save sheerun/474c852350c217fbdf0c9bd954ec7c3f to your computer and use it in GitHub Desktop.
version: '2'
services:
web:
image: node:4-slim
volumes:
- .:/app
command: node /app/index.js
ports:
- "9500:9500"
var vantage = require('vantage');
var express = require('express');
var app = express();
vantage().show();
{
"name": "server",
"version": "1.0.0",
"dependencies": {
"express": "^4.14.0",
"vantage": "^1.7.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment