feat: add Adminer support for PostgreSQL management

- Updated DATABASE_SETUP.md to include instructions for starting Adminer alongside PostgreSQL.
- Enhanced Docker Compose configuration to add Adminer service for database management.
- Provided connection details and usage instructions for Adminer in the documentation.
- Updated commands for restarting services and viewing logs to include Adminer.
This commit is contained in:
Julien Froidefond
2025-08-21 10:02:57 +02:00
parent 72b653de19
commit a749f7fcff
2 changed files with 68 additions and 12 deletions

View File

@@ -18,5 +18,17 @@ services:
timeout: 5s
retries: 5
# Adminer - Interface web pour PostgreSQL
adminer:
image: adminer:4.8.1
restart: always
ports:
- "8080:8080"
environment:
ADMINER_DEFAULT_SERVER: postgres
ADMINER_DESIGN: pepa-linha-dark
depends_on:
- postgres
volumes:
postgres_data: