Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display the docker current configuration?

Tags:

docker

I have installed the docker daemon on a Debian 8 machine. And after setting a value for "DOCKER_OPTS" within the file "/etc/default/docker" I wanted to check if after restarting the service the value was set properly.

Is there a command to display the current docker's configuration ?

like image 867
Sabbane Avatar asked Jun 03 '15 12:06

Sabbane


1 Answers

After some researches I found the following issue https://github.com/docker/docker/issues/9889 which explains that systemd ignores the configuration file /etc/default/docker. Therefore in my case "DOCKER_OPTS" is not set.

After editing the file /lib/systemd/system/docker.service it is possible to check that the value is set correctly with the command, mentioned by Adrian, ps aux | grep docker.

The other useful commands to check the installation version and system information are docker version and docker info.

like image 65
Sabbane Avatar answered Sep 21 '22 19:09

Sabbane