diff --git a/linux-docker-fundamentals/README.md b/linux-docker-fundamentals/README.md index 7065734..bf5a4b0 100644 --- a/linux-docker-fundamentals/README.md +++ b/linux-docker-fundamentals/README.md @@ -1647,7 +1647,7 @@ docker container rm -f todo-app docker container ls -a # from the gettingstarted/app dir -docker container run -d --name todo-app -p 3000:3000 -w /app -v "$(pwd):/app" node:12-alpine sh -c "yarn install && yarn run dev" +docker container run -d --name todo-app -p 3000:3000 -w /app -v "$(pwd):/app" node:12-alpine sh -c "yarn install --ignore-engines && yarn run dev" # '-w /app' sets the “working directory” or the current directory that the command will run from # '-v "$(pwd):/app"' bind mount the current directory from the host in the container into the /app directory @@ -1766,4 +1766,4 @@ https://youtube.com/playlist?list=PL5uLNcv9SibBZj30yqG01a7A4_MXSyGK3 1 hr for linux and git 2 hour for docker IMO If I were you I would skip shell scirpt -https://iximiuz.com/en/posts/container-learning-path/ \ No newline at end of file +https://iximiuz.com/en/posts/container-learning-path/