Added Concrete5 CMS Template. with auto configuration in v0.2 or manua… (#170)

* Added Concrete5 CMS Template with auto configuration in v0.2 or manual config in v0.1

* List maintainer.

* Changing to mysql as mariadb was giving timeout errors. Changing to mysql has fixed this.

* Change log to single .png

* Change default site name to "MySite"
This commit is contained in:
Josh Calder
2016-07-28 04:10:17 +10:00
committed by Bill Maxwell
parent b416078b00
commit 7dc7c01e97
6 changed files with 210 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
CMSMysql:
environment:
MYSQL_ROOT_PASSWORD: ${root_password}
MYSQL_DATABASE: ${db_name}
MYSQL_USER: ${db_userame}
MYSQL_PASSWORD: ${db_password}
labels:
io.rancher.container.pull_image: always
tty: true
image: mysql
volumes:
- ${db_data_location}:/var/lib/mysql
stdin_open: true
volume_driver: ${volume_driver}
Concrete5App:
labels:
io.rancher.container.pull_image: always
tty: true
image: opensaas/concrete5
links:
- CMSMysql:mysql
volumes:
- ${cms_application_data}:/var/www/html/application
- ${cms_packages_data}:/var/www/html/packages
stdin_open: true
volume_driver: ${volume_driver}