I have a server with ubuntu 14.04 (that does not use systemd), I use HHVM but I want to use php 7 now. I was thinking, why not use a container with php7.0-fpm, this should work.
I first tried with a centos 7 (that uses systemd) container, I could install everything, but the problem is when I try to start the service, I get this: "Failed to get D-Bus connection: Operation not permitted"
In the end, I used an Ubuntu 14.04 container where I installed php7 with fpm and it worked, but will I get this problem every time I want to use am container that uses systemd from a system that doesn't? (and what about the opposite)
Thank you :)