Skip to content

Commit

Permalink
Switch to docker_compose_v2 in tools playbook (#14872)
Browse files Browse the repository at this point in the history
Switch to docker_compose_v2

Fix
```
"Configuration error - kwargs_from_env() got an unexpected keyword argument 'ssl_version'"}
```
  • Loading branch information
TheRealHaoLiu committed Feb 13, 2024
1 parent 44d85b5 commit b0565e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/docker-compose/ansible/roles/vault/tasks/initialize.yml
Expand Up @@ -4,7 +4,7 @@

- block:
- name: Start the vault
community.docker.docker_compose:
community.docker.docker_compose_v2:
state: present
services: vault
project_src: "{{ sources_dest }}"
Expand Down Expand Up @@ -216,7 +216,7 @@

always:
- name: Stop the vault
community.docker.docker_compose:
community.docker.docker_compose_v2:
state: absent
project_src: "{{ sources_dest }}"
when: vault_start is defined and vault_start.changed

0 comments on commit b0565e9

Please sign in to comment.