mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	- Standardized spacing in {{ docker_compose.directories.volumes }} across multiple roles
- Added async and poll support to sys-bkp-docker-2-loc database seeding and file permission tasks
- Moved Installation.md for web-app-matrix into docs/ for better structure
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			597 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			597 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| pgadmin_host_server_file:     "{{ docker_compose.directories.volumes }}servers.json"
 | |
| pgadmin_docker_server_file:   "/pgadmin4/servers.json"
 | |
| pgadmin_host_password_file:   "{{ docker_compose.directories.volumes }}.pgpass"
 | |
| pgadmin_docker_password_file: "/pgpass"
 | |
| 
 | |
| pgadmin_servers:
 | |
|   - name:           "Central Postgres Database"
 | |
|     host:           "{{ database_host }}"
 | |
|     port:           "{{ database_port }}"
 | |
|     username:       "postgres"
 | |
|     maintenance_db: "postgres"
 | |
|     password:       "{{ applications['svc-db-postgres'].credentials.POSTGRES_PASSWORD }}"
 | |
| 
 | |
| # Here you can add more databases  |