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