1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/opencart
2016-06-07 02:00:47 +08:00
..
docker-compose.yml add magento 2015-07-26 19:42:40 +08:00
Dockerfile add phpvirtualbox 2016-06-07 02:00:47 +08:00
README.md upgrade opencart 2015-11-03 11:00:59 +08:00

opencart

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

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

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