15 lines
274 B
YAML
15 lines
274 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
hello-dev:
|
|
container_name: hello_world_client
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- '.:/app:z'
|
|
- '/app/node_modules'
|
|
ports:
|
|
- 3001:3000
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|