mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-27 13:08:39 +08:00
38 lines
1022 B
YAML
38 lines
1022 B
YAML
- name: Docker compose up
|
|
shell: |
|
|
docker compose up -d
|
|
sleep 30
|
|
args:
|
|
chdir: "{{installpath}}/{{appname}}"
|
|
|
|
- name: Recursively create directory for {{appname}}
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
recurse: yes
|
|
with_items:
|
|
- "{{installpath}}/{{appname}}/data"
|
|
|
|
- name: Add softlink of all volumes for app root directory
|
|
block:
|
|
- name: Get volumes name
|
|
shell: docker compose config --volumes
|
|
register: volume_names
|
|
args:
|
|
chdir: "{{installpath}}/{{appname}}"
|
|
|
|
- name: Create softlink of volumes
|
|
file:
|
|
src: "/var/lib/docker/volumes/{{appname}}_{{item}}/_data"
|
|
dest: "{{installpath}}/{{appname}}/data/{{item}}"
|
|
state: link
|
|
force: yes
|
|
loop: "{{volume_names.stdout_lines}}"
|
|
|
|
- name: Check Docker Container Service
|
|
shell: |
|
|
echo \"docker ps --format '{{ json . }}' | jq -s 'map({name:.Names,status:.Status})'\" >> /tmp/test1.sh
|
|
bash /tmp/test.sh
|
|
register: check_container_service
|
|
notify: check_container_service
|