mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
18 lines
250 B
YAML
18 lines
250 B
YAML
opencart:
|
|
image: vimagick/opencart
|
|
ports:
|
|
- "8000:80"
|
|
links:
|
|
- mysql
|
|
volumes:
|
|
- /var/www/html
|
|
restart: always
|
|
|
|
mysql:
|
|
image: mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
- MYSQL_DATABASE=opencart
|
|
restart: always
|
|
|