File dev-helper/docker/openrat-dev/config-dev.yml

Last commit: Fri Apr 15 21:36:28 2022 +0200	dankert	New: Configuration values may be overridden by environment variables.
1 # OpenRat CMS configuration for development in docker 2 login: 3 motd: "" 4 database-default: 5 default-id: db 6 database: 7 db: 8 enabled : true 9 dsn : "${env:DB_TYPE}:host=${env:DB_HOST}; dbname=${env:DB_NAME}" 10 description: "PDO" 11 name : "PRO" 12 user : ${env:DB_USER} 13 password : ${env:DB_PASS} 14 base64 : true # store binary as BASE64 (should be true for postgresql) 15 prefix : cms_pro1_ 16 suffix : _or 17 log: 18 file : "" 19 level: "debug" 20 stdout: true 21 22 production: ${env:CMS_PRODUCTION} 23 24 mail: 25 client: smtp 26 smtp: 27 relay: 28 host: mail.weiherhei.de 29 hostname: "cms.docker.spencer" 30 31 publish: 32 filesystem: 33 directory: /var/www/localhost/public 34 35 application: 36 name: "${env:CMS_NAME?OpenRat CMS}" 37 operator: "${env:CMS_OPERATOR?Local}" 38
Download dev-helper/docker/openrat-dev/config-dev.yml
History Fri, 15 Apr 2022 21:36:28 +0200 dankert New: Configuration values may be overridden by environment variables. Tue, 9 Nov 2021 00:35:42 +0100 Jan Dankert Fixes: Reading and writing template sources with the new content table. Thu, 7 Oct 2021 23:54:58 +0200 Jan Dankert Fix: Providing a local development configuration within a docker machine.