2025-07-14 12:48:15 +05:30
|
|
|
# Adminer Database Management Tool Configuration
|
2025-06-28 22:09:53 +05:30
|
|
|
services:
|
|
|
|
|
adminer:
|
2025-07-14 12:48:15 +05:30
|
|
|
# Basic container configuration
|
2025-06-28 22:09:53 +05:30
|
|
|
container_name: adminer
|
2025-07-13 18:35:45 +05:30
|
|
|
image: docker.io/library/adminer:5.3.0
|
|
|
|
|
restart: unless-stopped
|
2025-07-14 12:48:15 +05:30
|
|
|
|
|
|
|
|
# Network port configuration
|
2025-06-28 22:09:53 +05:30
|
|
|
ports:
|
2025-07-14 12:48:15 +05:30
|
|
|
- ${PORT}:8080 # Maps host port to Adminer web interface
|