New addition: Adminer

This commit is contained in:
2023-09-10 01:37:44 +02:00
parent e3f287db66
commit f1d1edb924
2 changed files with 14 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#ADMINER_CONTAINER_NAME=Adminer
#ADMINER_TAG=latest
#ADMINER_PORT=8080
+9
View File
@@ -0,0 +1,9 @@
services:
# Adminer
adminer:
container_name: ${ADMINER_CONTAINER_NAME:-Adminer}
hostname: adminer
image: adminer:${ADMINER_TAG:-latest}
restart: ${RESTART:-unless-stopped}
ports:
- ${ADMINER_PORT:-8080}:8080