Skip to content

Commit

Permalink
#328 correct minio_compose.yml location
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Sizemore committed Dec 20, 2023
1 parent ee267ca commit e6c2055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/minio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
register: compose_file

- name: STORAGE | Stop `docker-compose down` MinIO
ansible.builtin.shell: 'docker compose -f minio_compose.yml down'
ansible.builtin.shell: 'docker compose -f {{ minio.docker.project_location }}/minio_compose.yml down'
become: true
become_user: '{{ minio.user }}'
args:
Expand All @@ -80,7 +80,7 @@
- copy_compose.changed

- name: STORAGE | Run `docker-compose up` MinIO
ansible.builtin.shell: 'docker compose -f minio_compose.yml up -d'
ansible.builtin.shell: 'docker compose -f {{ minio.docker.project_location }}/minio_compose.yml up -d'
become: true
become_user: '{{ minio.user }}'
args:
Expand Down

0 comments on commit e6c2055

Please sign in to comment.