1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/opencart
2015-06-09 22:45:42 +08:00
..
docker-compose.yml add pure-ftpd 2015-06-09 22:45:42 +08:00
Dockerfile fix 2015-05-31 11:37:22 +08:00
README.md update 2015-05-27 17:45:11 +08:00

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

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

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