mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
505 B
505 B
prestashop
PrestaShop has comprehensive product features for small, medium or large ecommerce stores and sell online. Hundreds of features are standard and 100% free.
docker-compose.yml
prestashop:
image: vimagick/prestashop
ports:
- "8000:80"
links:
- mysql
volumes:
- /var/www
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=prestashop
restart: always