Last active
January 18, 2016 01:41
-
-
Save andyshinn/29417dd245eaef9c5281 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| web: | |
| build: . | |
| net: example | |
| router: | |
| image: 1science/nginx:latest | |
| net: example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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