mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-16 11:37:34 +02:00
16 lines
210 B
YAML
16 lines
210 B
YAML
opencart:
|
|
image: opencart
|
|
ports:
|
|
- "8000:80"
|
|
links:
|
|
- mysql
|
|
restart: always
|
|
|
|
mysql:
|
|
image: mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
- MYSQL_DATABASE=opencart
|
|
restart: always
|
|
|