Docker commands via php shell_exec Docker commands via php shell_exec shell shell

Docker commands via php shell_exec


I did the following to get this working:

  1. Created a php file called index.php on /var/www/html/ with this content:

    <?php    echo '<pre>';    $content = system('sudo docker images', $ret);    echo '</pre>';?>
  2. Edited sudoers file with visudo, adding the following line at the end:

    www-data ALL=NOPASSWD: /usr/bin/docker
  3. Checked http://localhost/index.php and it worked!

enter image description here

You can even build and run containers with this, hope it works for you.


You can do this:

vi rd.php

Put this content in rd.php file

<?php $output = shell_exec('RET=`docker run hello-world`;echo $RET');echo $output;

Now you can run

php rd.php

You can view the result :

Hello from Docker. This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (Assuming it was not already locally available.) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash For more examples and ideas, visit: http://docs.docker.com/userguide/

That's all !

I hope this help you