12 lines
211 B
YAML
12 lines
211 B
YAML
|
# FOR TESTS
|
||
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
# Container that hosts Vue frontend
|
||
|
app-unit-test:
|
||
|
image: node:12
|
||
|
command: npm run test:unit
|
||
|
working_dir: /home/node
|
||
|
volumes:
|
||
|
- ../web:/home/node
|