add pgadmin

This commit is contained in:
tom.chivert
2025-12-15 10:21:34 +01:00
parent 8c30c9667b
commit 14763d611a
6 changed files with 82 additions and 0 deletions

View File

@@ -17,5 +17,6 @@
- docker_redisinsight
- docker_gitlab
- docker-gitlab-runner
- docker_pgadmin
with_items:
- "{{ docker_services }}"

17
tasks/pgadmin.yml Normal file
View File

@@ -0,0 +1,17 @@
---
- name: pgadmin | check vars are defined
assert:
that:
- pgadmin_domain is defined
- pgadmin_email is defined
- pgadmin_password is defined
tags: ['docker_pgadmin']
- include_tasks: base.yml
tags: ['docker_pgadmin']
- name: pgadmin | create docker volume data
docker_volume:
name: pgadmin__data
when: docker_services_external_volumes
tags: ['docker_pgadmin']