Files
infra-postgres/docker-compose.yml
Matthieu 93a4dfedb4
All checks were successful
Auto Tag / tag (push) Successful in 5s
feat : add Adminer service on port 8083
- 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>
2026-04-02 12:03:35 +02:00

22 lines
426 B
YAML

services:
postgres:
image: postgres:16-alpine
container_name: postgres
env_file: .env
ports:
- "5432:5432"
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