mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:15:04 +02:00
29 lines
558 B
Markdown
29 lines
558 B
Markdown
magento
|
|
=======
|
|
|
|
[Magento][1] 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.
|
|
|
|
## docker-compose.yml
|
|
|
|
```yaml
|
|
magento:
|
|
image: vimagick/magento
|
|
ports:
|
|
- "8000:80"
|
|
links:
|
|
- mysql
|
|
restart: always
|
|
|
|
mysql:
|
|
image: mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
- MYSQL_DATABASE=magento
|
|
restart: always
|
|
```
|
|
|
|
[1]: https://magento.com/
|