Docker is a container technology for Linux / MacOS / FreeBSD (and even Windows, but not full support) that allows a developer to package up an application with all of the parts it needs. It can also be called “Docker commands cheat sheet“. List currently running docker containers: docker ps List all docker containers (running andContinue Reading
Tag: Container
How to automatically run Docker containers at startup
Docker is a container technology for Linux / MacOS / FreeBSD (and even Windows, but not fully supports) that allows a developer to package up an application with all of the parts it needs. Restart Policies You should add –restart=always argument: docker run –restart=always -d {{ name }} Restart Policies Using the –restart flag. On Docker run you can specifyContinue Reading