|
|
|
|
|
by landr0id
4770 days ago
|
|
Can someone give me a rundown on the general idea of Docker? I'm a programmer, don't do much server/linux work (OS X is my OS), so I'm not quite understanding. > Docker is an open-source engine which automates the deployment of applications as highly portable, self-sufficient containers which are independent of hardware, language, framework, packaging system and hosting provider. What does this mean? Someone sets up an application with necessary dependencies, everything ready to go and creates a container out of it which can run on any linux kernel? |
|
docker run -h myhost -t repo/redis-image redis-server
That creates a container based on the repo/redis-image image, and runs the command "redis-server" once it boots (less than a second on my machine).