2015-07-26 13:42:40 +02:00
|
|
|
magento
|
|
|
|
=======
|
|
|
|
|
2016-07-04 08:03:16 +02:00
|
|
|
[Magento][1] Community Edition is open source eCommerce software used to power your
|
2015-07-26 13:42:40 +02:00
|
|
|
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.
|
|
|
|
|
2016-07-04 08:03:16 +02:00
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
2015-07-26 13:42:40 +02:00
|
|
|
magento:
|
|
|
|
image: vimagick/magento
|
|
|
|
ports:
|
|
|
|
- "8000:80"
|
|
|
|
links:
|
|
|
|
- mysql
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
mysql:
|
|
|
|
image: mysql
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
|
|
- MYSQL_DATABASE=magento
|
|
|
|
restart: always
|
|
|
|
```
|
2016-07-04 08:03:16 +02:00
|
|
|
|
|
|
|
[1]: https://magento.com/
|