I am developing a new theme in Prestashop and I am looking for some help running Prestashop on docker.
Hello newbie! Read the forum rules first!
Run Prestashop on docker it is easy!!
Where is your problem?
1. Download PS image
2. Download MySQL image
3. Make MySQL container. Don't forget to make a port trigger like 3306:53306
4. Make PS container. Don't forget to make a port trigger like 80:8000
5. Go to browser localhost:8000
6. Start PS installation
7. on SQL step set localhost:53306
8. DONE
But using PS on docker is not a good idea. You don't have FTP access and other things.
Instead PS docker you can run the installation directly in your folder.
Just install PHP on your OS.
and run the command
php -S localhost:8000 in the folder where you unpack PS!
1. Download PS image
2. Download MySQL image
3. Make MySQL container. Don't forget to make a port trigger like 3306:53306
4. Unpack PS
5. go to the unpacked PS folder
6. run the command
php -S localhost:8000
5. Go to browser localhost:8000
6. Start PS installation
7. on SQL step set localhost:53306
8. DONE