2018-06-27 16:59:47 +02:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
app:
|
2018-06-28 08:47:06 +02:00
|
|
|
image: node:9-alpine
|
|
|
|
working_dir: /srv
|
2018-06-27 16:59:47 +02:00
|
|
|
volumes:
|
2018-06-28 08:47:06 +02:00
|
|
|
- ./:/srv
|
|
|
|
- node_modules:/srv/node_modules
|
|
|
|
command: npm run watch
|
|
|
|
volumes:
|
|
|
|
node_modules:
|