How to access phpmyadmin and create new joomla site #56
-
Hi, So I managed to run joomlaserver and I'm able to access the default site, I was wondering how to add aditionnal sites to the site directory and how to access phpmyadmin, if I understand it right I should be able to do so on http://localhost:8180/phpmyadmin. I also noticed the default site doesn't go trough the install process so there is a default user existing but I can't find any information on that in the project. Thx in advance ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello Shane, phpMyAdminGreat to hear that. Joomatools Server comes with additional Docker Compose profiles: https://docs.docker.com/compose/profiles, phpMyAdmin is one such profile. To start it you would do:
This will start both the Creating sitesCreating additional sites is done using our Joomlatools Console which comes included. To access it you need to open a shell into the container, using For more info: https://github.com/joomlatools/joomlatools-console A new v2 version of Console us underway, we are adding Joomla 4 support and streamlining the integration into Server. See: joomlatools/joomlatools-console#148 |
Beta Was this translation helpful? Give feedback.
Hello Shane,
phpMyAdmin
Great to hear that. Joomatools Server comes with additional Docker Compose profiles: https://docs.docker.com/compose/profiles, phpMyAdmin is one such profile. To start it you would do:
docker composer --profile phpmyadmin up
This will start both the
joomlatools-server
main container and an additionalphpmyadmin
container, both are setup for you to access the same database, by default data is stored in a Docker volume.Creating sites
Creating additional sites is done using our Joomlatools Console which comes included. To access it you need to open a shell into the container, using
docker exec -it joomlatools-server bash
and then you can usejoomla
For more info: htt…