dockerfiles/opencart
kev 7a2be93ddc update mysql volume 2019-10-27 07:52:18 +08:00
..
Dockerfile fix opencart 2017-12-14 14:25:30 +08:00
README.md upgrade opencart to 3.0.2.0 2017-12-13 16:06:11 +08:00
docker-compose.yml update mysql volume 2019-10-27 07:52:18 +08:00

opencart

OpenCart is designed feature rich, easy to use, search engine friendly and with a visually appealing interface.

docker-compose.yml

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

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