Docker Server Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Docker Concepts - Server * Docker Operations")
 
No edit summary
Line 3: Line 3:
* [[Docker_Concepts#The_Docker_Server|Docker Concepts - Server]]
* [[Docker_Concepts#The_Docker_Server|Docker Concepts - Server]]
* [[Docker Operations]]
* [[Docker Operations]]
=Start=
Use <tt>dockerd</tt>, which is the utility to start the Docker in daemon mode.
<pre>
docker daemon -H unix:///var/run/docker -H tcp://0.0.0.0:2375
</pre>

Revision as of 21:17, 4 April 2017

Internal

Start

Use dockerd, which is the utility to start the Docker in daemon mode.

docker daemon -H unix:///var/run/docker -H tcp://0.0.0.0:2375