1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-18 04:58:52 +02:00
dockerfiles/opencart/docker-compose.yml

18 lines
250 B
YAML
Raw Normal View History

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