2018-06-27 14:59:47 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
app:
|
2020-02-10 20:49:23 +00:00
|
|
|
image: node:12-alpine
|
2018-06-28 06:47:06 +00:00
|
|
|
working_dir: /srv
|
2018-06-27 14:59:47 +00:00
|
|
|
volumes:
|
2018-06-28 06:47:06 +00:00
|
|
|
- ./:/srv
|
|
|
|
- node_modules:/srv/node_modules
|
2020-02-10 20:49:23 +00:00
|
|
|
command: yarn run watch
|
2018-06-28 06:47:06 +00:00
|
|
|
volumes:
|
|
|
|
node_modules:
|