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. Developers use Docker to eliminate “works on my machine” problems when collaborating on code with co-workers. Operators use Docker to run and manage apps side-by-side in isolated containers […]