1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-08 04:04:18 +02:00
dockerfiles/opencart/README.md

20 lines
332 B
Markdown
Raw Normal View History

2015-05-27 10:39:04 +02:00
`OpenCart` is designed feature rich, easy to use, search engine
friendly and with a visually appealing interface.
2015-05-27 11:45:11 +02:00
```
opencart:
image: opencart
ports:
- "8000:80"
links:
- mysql
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=opencart
restart: always
```