1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/prestashop/docker-compose.yml

18 lines
362 B
YAML
Raw Normal View History

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