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