Skip to content

Instantly share code, notes, and snippets.

@andyshinn
Last active January 18, 2016 01:41
Show Gist options
  • Select an option

  • Save andyshinn/29417dd245eaef9c5281 to your computer and use it in GitHub Desktop.

Select an option

Save andyshinn/29417dd245eaef9c5281 to your computer and use it in GitHub Desktop.
web:
build: .
net: example
router:
image: 1science/nginx:latest
net: example
FROM gliderlabs/alpine:3.3
RUN apk --no-cache add nodejs \
&& mkdir -p /public \
&& echo Hi > /public/index.html \
&& npm install -g http-server
CMD http-server -p 4200 -a 0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment