I\'m using docker and my container is build over php:5.6-fpm image from php official repo. Is it somehow possible to restart/reload php-fpm from inside a container?
You don't have to go inside the container
on your host ps -ef|grep fpm // find master pid kill -USR2
ps -ef|grep fpm // find master pid kill -USR2