You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02: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