Fix condition for gitlab_log_tmpfs feature
In the current way, no volume for gitlab logs would be created by default. This is undesired.
This commit is contained in:
parent
7ea009d7a4
commit
0859e99a6d
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ services:
|
|||
volumes:
|
||||
- "{{ gitlab_data_location }}:/var/opt/gitlab"
|
||||
- "{{ gitlab_config_location }}:/etc/gitlab"
|
||||
{% if gitlab_log_tmpfs %}
|
||||
{% if not gitlab_log_tmpfs %}
|
||||
- "{{ gitlab_log_location }}:/var/log/gitlab"
|
||||
{% endif %}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue