Docker Client Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 55: Line 55:
=Scenarios=
=Scenarios=


<font color=red>TO RELOCATE</font>
{{Internal|Docker Client Scenarios|Docker Client Scenarios}}
 
==Running RabittMQ==
 
<pre>
docker run -d --hostname my-rabbit --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq
</pre>
 
==Running a database==
 
<pre>
docker run -d -p 1521:1521 --restart=always --name=db db /entrypoint.sh
</pre>

Revision as of 23:47, 25 April 2017

Internal

Running the Client

On the Same Host as the Server

In order to connect to the docker server over the Unix socket, the user running the client must have permissions to do so:

[testuser@docker-server ~]$ ls -al /var/run/docker.sock
srw-rw----. 1 root docker 0 Apr 25 16:00 /var/run/docker.sock

One way to do that is to make the user a member of "docker" group:

usermod -G docker testuser

From a Remote Host

Commands

Queries

images
ps
inspect
version

Lifecycle

run
start
stop

Executions

exec

Other

build
import
load
update

Recipes

Scenarios

Docker Client Scenarios