You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I have this little project going, that is kinda old.. but new in that I only made it public a few weeks ago. So when this issue was create, it was not yet public. No that it is, I think we can move this conversation there, since its a tool to help manage Joomla deployment along side traefik and multiple other containers.
This project is called OctoJoom and you can use it to write your initial docker-composer file, as it demonstrates how I use the Joomla docker containers most effectively.
It actually links docker in another container of mysql, and you can just update those values with your external IP:port values.
Let me know if this helps at all, since trying to explain everything here is to much.. this tool of mine does the explaining for me.
I run mysql in it's own network, since i cannot get the mysql command line otherwise (see: docker-library/mysql#644)
docker run --network mysql-net --name some-mysql -e MYSQL_ROOT_PASSWORD=root -d mysql:5.6
then run joomla in the same network (since linked containers should be in the same network).
docker run --network mysql-net --name some-joomla --link some-mysql:mysql -p 8080:80 -d joomla
Though the container exits with exit code 1
docker container inspect some-joomla
Any idea why this happens or how to proceed otherwise?
Btw. link is a deprecated parameter
The text was updated successfully, but these errors were encountered: