cami
18e6420500
- App zeigt nun eine Zeit an, wenn backend zur verfügung steht - Docker-Port ist auf 3000, weil Standard
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:
|
|
- 3000:3000
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|