add kms server, tweede poging

This commit is contained in:
pizzaniels 2023-01-03 19:12:40 +01:00
parent d2b6d0942d
commit 6373bd7ac1
5 changed files with 130 additions and 0 deletions

14
roles/kms/tasks/main.yml Normal file
View file

@ -0,0 +1,14 @@
- name: Create app directory
file:
path: /apps/kms
state: directory
- name: Copy Docker Compose script
copy:
src: "{{ role_path }}/files/docker-compose.yml"
dest: /apps/kms/docker-compose.yml
- name: Start the Docker Compose
community.docker.docker_compose:
project_src: /apps/kms
pull: true
remove_orphans: true