1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/opencart/docker-compose.yml

18 lines
250 B
YAML
Raw Normal View History

2015-05-27 09:45:11 +00:00
opencart:
2015-07-26 11:42:40 +00:00
image: vimagick/opencart
2015-05-27 09:45:11 +00:00
ports:
- "8000:80"
links:
- mysql
2015-06-09 14:45:42 +00:00
volumes:
- /var/www/html
2015-05-27 09:45:11 +00:00
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=opencart
restart: always