Open AmsellemJoseph opened 9 months ago
@AmsellemJoseph I can't reproduce this.
when I run docker-compose up -d
in the /examples/fpm-nginx
folder, I get a working web, worker and cron container.
Did you make any alterations to the example? if so, can you re-check them? as it seems the mautic-docroot
volume is missing / not working correcty.
hey @mollux,
Thanks for your response,
I also think that the issue came from mautic-docroot
, but my stack is the same as your.
The only thing that changes is the db password.
And in the mautic-docroot
folder, I only have a file named supervisord.pid
with 7
in it and an empty folder named media
Found a solution, thx
@AmsellemJoseph can you share your solution so we can see if it's generic enough to add it to the readme?
yes sur, I had to create a volume named mautic-docroot, and at the end of the docker-compose file, I had to add this:
volumes:
mautic-docroot:
driver: local
driver_opts:
type: none
device: ${PWD}/mautic-docroot
o: bind
yes sur, I had to create a volume named mautic-docroot, and at the end of the docker-compose file, I had to add this:
volumes: mautic-docroot: driver: local driver_opts: type: none device: ${PWD}/mautic-docroot o: bind
Please could you share the docker-compose, I have tried many ways and it doesn't work, not even the example version that is in the repository works, I hope you can share it
Hey all, Since yesterday, I have been trying to deploy the latest version of Mautic based on the example you give in docker-mautic/examples/fpm-nginx/docker-compose.yml
I followed your instructions to the letter, but I have this error which keeps looping
I'm sure I'm missing something but I can't figure out what.
Thank you very much for your work and your responses 😊.