Skip to content

Commit

Permalink
bug fix, change user from root to appuser for application.conf mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
gschmutz committed Apr 15, 2024
1 parent 799fffb commit ad725da
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3327,7 +3327,7 @@ services:
volumes:
- ./data-transfer:/data-transfer
- ./scripts/jikkou/:/jikkou
- ./conf/jikkou/application.conf:/root/.jikkou/application.conf
- ./conf/jikkou/application.conf:/appuser/.jikkou/application.conf
- ./conf/jikkou/config:/etc/jikkou/config
{% if ns.secureKafkaEnabled and ns.securityProtocol == 'SSL' %}
- ./security/kafka/client-certs:/certs
Expand Down Expand Up @@ -3359,14 +3359,14 @@ services:
- {{JIKKOU_exclude_resources_regexp}}
- {{JIKKOU_include_resources_regexp}}
{% endif -%} {# JIKKOU_exclude_resources_regexp #}
{% if JIKKOU_output_format is defined and JIKKOU_output_format and JIKKOU_output_format | length | default(false) %}
{% if JIKKOU_output_format is defined and JIKKOU_output_format and JIKKOU_output_format and JIKKOU_output_format | length | default(false) %}
- "--output"
- "{{JIKKOU_output_format}}"
{% endif -%} {# JIKKOU_output_format #}
{% if JIKKOU_use_dryrun | default(false) %}
- "--dry-run"
{% endif -%} {# JIKKOU_use_verbose_option #}
{% if JIKKOU_logger_level is defined and JIKKOU_logger_level and JIKKOU_logger_level | length default(false) %}
{% if JIKKOU_logger_level is defined and JIKKOU_logger_level and JIKKOU_logger_level and JIKKOU_logger_level | length default(false) %}
- "--logger-level"
- "{{JIKKOU_logger_level | upper}}"
{% endif -%} {# JIKKOU_logger_level #}
Expand Down

0 comments on commit ad725da

Please sign in to comment.