I have a dedicated server which is used for serving several domains on the net. To be able to upgrade some instances (CMS) within specific apache2 Vhosts. Need to have a newer version of mysql available (now mainly 5.7). So want to run that in a docker container making it accessible for the cms in the vhost.
Seems all straight forward, reading the instructions. Though, have some questions before making the move..
-
can docker run aside all existing other services which are already on the server? So it is not disturbing anything? Since it is a production server hosting several sites and a mail-server. (I have backups so can restore the server if things go wrong). But better be prepared.
-
how to get into the new mysql container? I use one instance of phpmyadmin already on the server. Can I have that instance also for maintaining the containers mysql db? Or do I need to run a phpmayadmin instance in the same container or an own container? How to approach all avoiding making things complex?
-
also want to be able to remotely create and maintain the containers/ docker. Is there a recommended GUI to use (which is also secure). Could that be Portainer? Or recommend an other GUI?