mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
.. | ||
docker-compose.yml | ||
Dockerfile | ||
README.md |
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