Has anyone tried to run the Monday.com welcome apps (like this one: https://github.com/mondaycom/welcome-apps/tree/master/apps/quickstart-react) in a Docker Desktop container? I prefer to run development tools in Docker to avoid messing up my OS.
I have it working to some degree with a few tweaks, but the tunnel (npm run mtunnel -p 8301) is not fully working.
I am using this setup for docker-compose:
version: "3.8"
services:
node:
image: "node:lts"
user: "node"
working_dir: /home/node/app
environment:
- NODE_ENV=development
# - NODE_ENV=production
volumes:
- ./:/home/node/app
ports:
- 4040:4040
- 4049:4049
- 8301:8301
command: "npm run start"
Any hints are welcome. Otherwise I must revert to install Node.js
