1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/prestashop
2017-12-19 15:02:05 +08:00
..
docker-compose.yml add prestashop 2017-12-19 15:02:05 +08:00
Dockerfile add prestashop 2017-12-19 15:02:05 +08:00
README.md add prestashop 2017-12-19 15:02:05 +08:00

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