1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/magento
2016-01-27 00:41:24 +08:00
..
docker-compose.yml add magento 2015-07-26 19:42:40 +08:00
Dockerfile upgrade magento to 2.0.1 2016-01-27 00:41:24 +08:00
README.md add magento 2015-07-26 19:42:40 +08:00

magento

Magento Community Edition is open source eCommerce software used to power your online store and can be downloaded for free. Developers can modify the core code and add features and functionality by installing extensions from the Magento Connect marketplace.

magento:
  image: vimagick/magento
  ports:
    - "8000:80"
  links:
    - mysql
  restart: always

mysql:
  image: mysql
  environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=magento
  restart: always