added cyberchef.geokunis2.nl
This commit is contained in:
parent
3865e57f9a
commit
d81bcbaba2
5 changed files with 43 additions and 0 deletions
14
roles/cyberchef/tasks/main.yml
Normal file
14
roles/cyberchef/tasks/main.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
- name: Create app directory
|
||||
file:
|
||||
path: "{{ service_dir }}"
|
||||
state: directory
|
||||
- name: Copy Docker Compose script
|
||||
copy:
|
||||
src: "{{ role_path }}/files/docker-compose.yml"
|
||||
dest: "{{ service_dir }}/docker-compose.yml"
|
||||
- name: Start the Docker Compose
|
||||
docker_compose:
|
||||
project_src: "{{ service_dir }}"
|
||||
pull: true
|
||||
remove_orphans: true
|
||||
|
Reference in a new issue