2015-07-26 13:42:40 +02:00
|
|
|
opencart
|
|
|
|
========
|
|
|
|
|
2015-11-03 05:00:59 +02:00
|
|
|
[OpenCart][1] is designed feature rich, easy to use, search engine
|
2015-05-27 10:39:04 +02:00
|
|
|
friendly and with a visually appealing interface.
|
2015-05-27 11:45:11 +02:00
|
|
|
|
2017-12-13 10:06:11 +02:00
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
2021-04-16 09:47:27 +02:00
|
|
|
version: "3.8"
|
2015-05-27 11:45:11 +02:00
|
|
|
|
2021-04-16 09:47:27 +02:00
|
|
|
services:
|
|
|
|
|
|
|
|
opencart:
|
|
|
|
image: vimagick/opencart
|
|
|
|
ports:
|
|
|
|
- "8000:80"
|
|
|
|
volumes:
|
|
|
|
- /var/www
|
|
|
|
depends_on:
|
|
|
|
- mysql
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
mysql:
|
|
|
|
image: mysql
|
|
|
|
volumes:
|
|
|
|
- ./data:/var/lib/mysql
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
|
|
- MYSQL_DATABASE=opencart
|
|
|
|
restart: unless-stopped
|
2015-05-27 11:45:11 +02:00
|
|
|
```
|
2015-11-03 05:00:59 +02:00
|
|
|
|
|
|
|
[1]: http://www.opencart.com/index.php
|