* 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"
27 lines
735 B
YAML
Executable File
27 lines
735 B
YAML
Executable File
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} |