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>
22 lines
426 B
YAML
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
|