feat : add Adminer service on port 8083
All checks were successful
Auto Tag / tag (push) Successful in 5s

- Adminer web UI for PostgreSQL management
- Port 8083 (8080 taken by sirh-app)
- Nginx reverse proxy on adminer-prod.malio-dev.fr (HTTP)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-02 12:03:14 +02:00
parent dce99f58d7
commit 93a4dfedb4

View File

@@ -8,3 +8,14 @@ services:
volumes:
- ./data:/var/lib/postgresql/data
restart: unless-stopped
adminer:
image: adminer:latest
container_name: adminer
ports:
- "8083:8080"
environment:
ADMINER_DEFAULT_SERVER: postgres
restart: unless-stopped
depends_on:
- postgres