Created
November 29, 2017 02:54
-
-
Save jjasonclark/fb7cac0f0c83b77cff7a6da861cc81cd to your computer and use it in GitHub Desktop.
Docker compose file for nodejs-dashboard test application
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
version: '3.0' | |
volumes: | |
node_modules: | |
services: | |
app: | |
image: node:8-alpine | |
command: yarn run test-app | |
working_dir: '/app' | |
environment: | |
LANG: en_US.UTF-8 | |
FORCE_COLOR: 'true' | |
volumes: | |
- './:/app/' | |
- node_modules:/app/node_modules/ | |
ports: | |
- '9838:9838' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment