Skip to content

Commit

Permalink
Fix usernames
Browse files Browse the repository at this point in the history
  • Loading branch information
owine committed May 4, 2023
1 parent c5b3c12 commit 5ced609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/docspell/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ docspell_docker_envs_default:
# DOCSPELL_SERVER_AUTH_SERVER__SECRET: ""
DOCSPELL_SERVER_BACKEND_JDBC_PASSWORD: "{{ mariadb_docker_env_password }}"
DOCSPELL_SERVER_BACKEND_JDBC_URL: "jdbc:mariadb://{{ docspell_name }}_mariadb:3306/{{ docspell_name }}"
DOCSPELL_SERVER_BACKEND_JDBC_USER: "root"
DOCSPELL_SERVER_BACKEND_JDBC_USER: "{{ mariadb_docker_env_user }}"
DOCSPELL_SERVER_BIND_ADDRESS: "0.0.0.0"
DOCSPELL_SERVER_FULL__TEXT__SEARCH_ENABLED: "true"
DOCSPELL_SERVER_FULL__TEXT__SEARCH_SOLR_URL: "http://{{ docspell_name }}_solr:{{ solr_docker_env_port }}/solr/{{ docspell_name }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/koel/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ koel_docker_envs_default:
DB_HOST: "{{ koel_name }}_mariadb"
DB_PORT: "3306"
DB_DATABASE: "{{ koel_name }}"
DB_USERNAME: "root"
DB_USERNAME: "{{ mariadb_docker_env_user }}"
DB_PASSWORD: "{{ mariadb_docker_env_password }}"
APP_KEY: "base64:{{ koel_secret_key }}"
APP_URL: "{{ koel_web_url }}"
Expand Down

0 comments on commit 5ced609

Please sign in to comment.