websoft9/apps/roles/install/tasks/main.yml

36 lines
894 B
YAML
Raw Normal View History

2022-05-11 12:01:49 +08:00
- name: Rename and Run docker-compose
shell: |
docker-compose up -d
sleep 30
args:
2022-05-16 10:10:52 +08:00
chdir: "{{installpath}}/{{appname}}"
2022-05-11 12:01:49 +08:00
- name: Recursively create directory for {{appname}}
file:
path: "{{ item }}"
state: directory
recurse: yes
with_items:
2022-05-16 10:10:52 +08:00
- "{{installpath}}/{{appname}}/volumes"
2022-05-11 12:01:49 +08:00
2022-05-12 15:49:18 +08:00
- name: Set softlink of all volumes
block:
- name: Get volumes name
2022-05-13 08:39:46 +08:00
shell: docker-compose config --volumes
2022-05-12 15:49:18 +08:00
register: volume_names
2022-05-13 08:39:46 +08:00
args:
2022-05-16 10:10:52 +08:00
chdir: "{{installpath}}/{{appname}}"
2022-05-12 15:49:18 +08:00
- name: Create softlink of volumes
file:
2022-05-16 17:39:35 +08:00
src: "/var/lib/docker/volumes/{{appname}}_{{item}}/_data"
2022-05-16 10:10:52 +08:00
dest: "{{installpath}}/{{appname}}/volumes/{{item}}"
2022-05-12 15:49:18 +08:00
state: link
force: yes
2022-05-12 16:45:01 +08:00
loop: "{{volume_names.stdout_lines}}"
2022-05-11 14:40:10 +08:00
2022-05-12 11:57:18 +08:00
- name: Check Docker Container Service
shell: docker ps
register: check_container_service
notify: check_container_service