Docker Windows Tips-Trics
Posted on February 20, 2022 in Docker • Tagged with GIT, Pipeline, Docker, Docker Compose
Struggling to mount a host directory on windows machine?
Tip : Use "%cd%" instead of Linux command $(pwd) in Windows
docker run --name compare -it --rm -v "%cd%/report":/usr/app/src/report -v "%cd%/data":/usr/app/src/data ito-compare-excel:latest
Override Default Entry point in docker comppse file
MyContainer …Continue reading