Delete test.yml

This commit is contained in:
qiaofeng1227 2022-07-05 14:39:16 +08:00 committed by GitHub
parent 66fa8bf7a7
commit 813f92114d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,35 +0,0 @@
- 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: docker ps --format \{\{'json .'\}\}| jq -s map\(\{containername:'.Names',state:'.State'\}\)
register: check_container_service
notify: check_container_service