V1.7 Need some help run prestashop on docker

khouloud

New member
XNullUser
Joined
Dec 10, 2023
Messages
2
Reaction score
0
Points
1
Location
France
NullCash
5
I am developing a new theme in Prestashop and I am looking for some help running Prestashop on docker.
 

bogeo

Member
XNullUser
Joined
Apr 7, 2022
Messages
35
Reaction score
0
Points
6
NullCash
5
Thank you very much. very nice theme
 

d-shilko

Well-known member
☆☆ Special ☆☆
☆ Pro ☆
Joined
Jun 10, 2021
Messages
2,538
Reaction score
1,531
Points
113
NullCash
4,407
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
 
Top