2017-12-19 09:01:51 +02:00
|
|
|
prestashop:
|
2019-04-07 11:18:51 +02:00
|
|
|
image: prestashop/prestashop:1.7-7.2-apache
|
2017-12-19 09:01:51 +02:00
|
|
|
ports:
|
2019-04-07 11:18:51 +02:00
|
|
|
- "8080:80"
|
2017-12-19 09:01:51 +02:00
|
|
|
links:
|
|
|
|
- mysql
|
|
|
|
volumes:
|
2019-04-07 11:18:51 +02:00
|
|
|
- ./data:/var/www/html
|
|
|
|
restart: unless-stopped
|
2017-12-19 09:01:51 +02:00
|
|
|
|
|
|
|
mysql:
|
2019-04-07 11:18:51 +02:00
|
|
|
image: mysql:8
|
|
|
|
command: --default-authentication-plugin=mysql_native_password
|
2017-12-19 09:01:51 +02:00
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
|
|
- MYSQL_DATABASE=prestashop
|
2019-04-07 11:18:51 +02:00
|
|
|
restart: unless-stopped
|