docker-react/docker-compose.yml

19 lines
351 B
YAML
Raw Permalink Normal View History

2019-11-12 00:57:20 +00:00
version: '3'
services:
web:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
volumes:
- /app/node_modules
- .:/app
tests:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- /app/node_modules
- .:/app
command: ["npm", "run", "test"]