Skip to content

Instantly share code, notes, and snippets.

View ad5jo's full-sized avatar
:octocat:
Job Hunting

Dave Durkee ad5jo

:octocat:
Job Hunting
View GitHub Profile
@ad5jo
ad5jo / docker-compose.yml
Created March 6, 2020 16:09 — forked from jschwarty/docker-compose.yml
Docker compose for mongodb and seed containers
version: '2'
services:
mongodb:
image: mongo:3.2.6
ports:
- "27017:27017"
mongo-seed:
image: mongo:3.2.6
const webpack = require('webpack')
const path = require('path')
module.exports = {
entry: {
app: './src/index.js'
},
output: {
path: __dirname+'/public/dist',
filename: 'bundle/[name].js',