docker #1
Description
docker
Introduction
Starts a docker deamon running on the default unix port and localhost:5555
Example usage
deploy the unit, then ssh into it:
sudo docker pull ubuntu # Pull latest images
sudo docker run -d ubuntu:14.04 /bin/sh -c "while true; do echo hello world; sleep 1; done" # Start a container
sudo docker ps # Is my container running?