mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
14 lines
378 B
YAML
14 lines
378 B
YAML
|
- name: Install {{appname}}
|
||
|
include_tasks: tasks/install.yml
|
||
|
vars:
|
||
|
app: "pgadmin"
|
||
|
|
||
|
- name: wait for pgadmin start
|
||
|
wait_for:
|
||
|
port: "{{pgadmin_port}}"
|
||
|
delay: 10
|
||
|
timeout: 30
|
||
|
|
||
|
- name: Check pgadmin Version
|
||
|
shell: sudo echo "pgadmin version $(docker exec -i pgadmin bash -c 'cat /var/www/html/package.json | grep version')" 1>> /data/logs/install_version.txt
|