Skip to content

Commit

Permalink
Merge pull request #519 from deNBI/dev
Browse files Browse the repository at this point in the history
Update setup_client.yml
  • Loading branch information
dweinholz authored May 16, 2024
2 parents 1407649 + bc81b4c commit ed31a1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plays/setup_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,18 +144,18 @@
when: "'bibigrid' not in ansible_run_tags and 'host_network' not in ansible_run_tags"

- name: Start client docker container in host network without bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up --pull=always -d
become: yes
tags: [ 'never', 'host_network' ]

- name: Start client docker container in host network with bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up --pull=always -d
become: yes
tags: [ 'never', 'host_network_bibigrid', ]


- name: Start docker container with bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up --pull=always -d

become: yes
tags: [ 'never', 'bibigrid' ]

0 comments on commit ed31a1f

Please sign in to comment.