Docker on Windows

Posted on Jul 08, 2017 in Software • Tagged with Software, Docker, Widnows, Windows 10, Hyper-V, Virtualization

It is suggested that you use Docker in WSL rather than using Docker for Windows.

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

It is suggested that you use Docker on WSL 2.

While Docker …


Continue reading

Tips on Dockerswarm

Posted on Oct 10, 2019 in Software • Tagged with Software, Docker, Docker Swarm

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

https://ender74.github.io/Sharing-Volumes-With-Docker-Swarm/

Volume

docker service create \
    --name nginx \
    --mount type=bind,source=`pwd`/static-site,target=/usr/share/nginx/html \
    -p 80:80 nginx
    https …

Continue reading