Hi @peter, welcome to Twake community forums 
If you want to edit the Twake code, you first must ensure docker uses your files using a new volume (./frontend/:/twake-react/
):
nginx:
image: twaketech/twake-nginx
environment:
- DEV=dev
build:
context: .
dockerfile: docker/twake-nginx/Dockerfile
ports:
- 8000:80
depends_on:
- php
- node
volumes_from:
- php
- node
volumes:
- ./frontend/:/twake-react/
- ./configuration/frontend/:/configuration
- ./docker-data/logs/nginx/:/var/log/nginx
- ./docker-data/drive-preview/:/twake-core/web/medias/
- ./docker-data/uploads/:/twake-core/web/upload/
Now Docker reads your files in frontend instead of its own internal copy.
Then you can rebuild the frontend with:
docker-compose exec nginx yarn dev-build
# or docker-compose exec nginx yarn build