Simple demo project exploring React and Material UI.
Pull the image from GitHub Container Registry:
docker run -dp 3000:80 --rm ghcr.io/amundsno/todo-react-mui:latestThen open http://localhost:3000 in your browser.
Clone the project:
git clone https://github.com/amundsno/todo-react-mui.git
cd todo-react-muiInstall dependencies and start development server:
npm install
npm run devOr, build and run in Docker:
docker build -t todo-react-mui:latest .
docker run -dp 3000:80 --rm todo-react-mui:latest