forked from data.coop/ansible
Fix missing quotes in ENV variables
This commit is contained in:
parent
14e72b2a5c
commit
df913b2622
|
@ -43,9 +43,9 @@
|
|||
|
||||
env:
|
||||
CMD_DB_URL: "postgres://codimd:{{ postgres_passwords.codimd }}@codimd_db:5432/codimd"
|
||||
CMD_ALLOW_EMAIL_REGISTER: False
|
||||
CMD_ALLOW_EMAIL_REGISTER: "False"
|
||||
CMD_IMAGE_UPLOAD_TYPE: "filesystem"
|
||||
CMD_EMAIL: False
|
||||
CMD_EMAIL: "False"
|
||||
CMD_LDAP_URL: "ldap://openldap"
|
||||
CMD_LDAP_BINDDN: "cn=admin,dc=data,dc=coop"
|
||||
CMD_LDAP_BINDCREDENTIALS: "{{ ldap_admin_password }}"
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
- name: external_services
|
||||
- name: postfix
|
||||
env:
|
||||
GO_ENV: production
|
||||
DATABASE_URL: postgres://fider:{{ postgres_passwords.fider }}@fider_db:5432/fider?sslmode=disable
|
||||
GO_ENV: "production"
|
||||
DATABASE_URL: "postgres://fider:{{ postgres_passwords.fider }}@fider_db:5432/fider?sslmode=disable"
|
||||
JWT_SECRET: "{{ fider_jwt_secret }}"
|
||||
|
||||
EMAIL_NOREPLY: noreply@{{ fider.domain }}
|
||||
|
|
Loading…
Reference in a new issue