Skip to content

Commit

Permalink
fix(minio): templating errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alesharik committed Jul 12, 2024
1 parent 918a4fc commit 3c2f819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/minio/templates/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ services:
command: server --console-address ":9001" /data1
restart: always
environment:
VIRTUAL_HOST: "{{ ','.join(minio.hosts | map('extract', name) | flatten ) }}"
VIRTUAL_HOST: "{{ ','.join('name' | map('extract', minio.hosts) | flatten ) }}"
VIRTUAL_PORT: 9000
LETSENCRYPT_HOST: "{{ ','.join(minio.hosts | map('extract', name) | flatten) }}"
LETSENCRYPT_HOST: "{{ ','.join('name' | map('extract', minio.hosts) | flatten) }}"
MINIO_ROOT_USER: ${ROOT_USER}
MINIO_ROOT_PASSWORD: ${ROOT_PASSWORD}
MINIO_PROMETHEUS_AUTH_TYPE: public
Expand Down

0 comments on commit 3c2f819

Please sign in to comment.