Skip to content

Instantly share code, notes, and snippets.

@jjasonclark
Created November 29, 2017 02:54
Show Gist options
  • Save jjasonclark/fb7cac0f0c83b77cff7a6da861cc81cd to your computer and use it in GitHub Desktop.
Save jjasonclark/fb7cac0f0c83b77cff7a6da861cc81cd to your computer and use it in GitHub Desktop.
Docker compose file for nodejs-dashboard test application
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