Category: container technology / docker

09.08.2018

i want to create a autostart script that starts whenever the server starts. mkdir /scripts vim /scripts/start.sh #!/bin/bash echo “========= starting up docker service” systemctl start docker echo “========= starting up docker containers” docker start containername vim /scripts/stop.sh #!/bin/bash echo […]

Docker
29.01.2018

who is who? concepts: docker is written in Google Go by Docker Inc, SanFrancisco because it does not emulate any hardware – it is a linux container / sandbox or jail like Free BSD Jail or Solaris Zones or OpenVZ so […]

debian 9 stretch – howto setup docker container software
31.07.2017

What is docker? (src) Docker is the world’s leading software container platform. WARNING! Docker is not really increasing security http://www.sysdig.com/blog/runc-container-escape-vulnerabilities So downloading random containers might be dangerous! Developers use Docker to eliminate “works on my machine” problems when collaborating on […]