blob: 549607efd5632082f5b022cad052b6790ff846c1 [file] [log] [blame]
- name: Deploy Kalamar-Plugin-ExternalResources to Test instance
hosts:
test-instance
user: korap
serial: 1
tasks:
- name: Save docker image
local_action: ansible.builtin.command docker save korap/kalamar-plugin-externalresources:latest -o ./kalamar-plugin-externalresources-latest.tar
- name: Copy docker image to hosts
ansible.builtin.copy:
src: ./kalamar-plugin-externalresources-latest.tar
dest: /opt/korap/instance-test/Kalamar-External/kalamar-plugin-externalresources-latest.tar
mode: '0644'
- name: Load docker image on host
ansible.builtin.command: docker load -i /opt/korap/instance-test/Kalamar-External/kalamar-plugin-externalresources-latest.tar
- name: Get UID for KorAP user
getent:
database: passwd
key: korap
- name: Gracefully stop and remove old docker container, if existing
community.docker.docker_container:
state: "absent"
name: kalamar-plugin-externalresources-test
recreate: true
keep_volumes: true
comparisons:
image: ignore # do not restart containers with older versions of the image
- name: Restart docker container
community.docker.docker_container:
image: korap/kalamar-plugin-externalresources:latest
restart_policy: "unless-stopped"
pull: false
name: kalamar-plugin-externalresources-test
user: "{{ ansible_facts.getent_passwd[\"korap\"].1 }}"
init: true
detach: true
mounts:
- type: bind
source: "/opt/korap/instance-test/Kalamar-External/db"
target: "/db"
- type: bind
source: "/opt/korap/instance-test/Kalamar-External/.env"
target: "/.env"
ports:
- "5722:5722"
comparisons:
image: ignore # do not restart containers with older versions of the image