mirror of
https://github.com/BradNut/docker-react
synced 2025-09-08 17:40:19 +00:00
19 lines
No EOL
351 B
YAML
19 lines
No EOL
351 B
YAML
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"] |