From f1d1edb924ac0d1f93481ae2a0209b9d9a8d28a2 Mon Sep 17 00:00:00 2001 From: Michel Date: Sun, 10 Sep 2023 01:37:44 +0200 Subject: [PATCH] New addition: Adminer --- adminer/.env.sample | 5 +++++ adminer/compose.yml | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 adminer/.env.sample create mode 100644 adminer/compose.yml diff --git a/adminer/.env.sample b/adminer/.env.sample new file mode 100644 index 0000000..ce884a5 --- /dev/null +++ b/adminer/.env.sample @@ -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 diff --git a/adminer/compose.yml b/adminer/compose.yml new file mode 100644 index 0000000..6bf1d7c --- /dev/null +++ b/adminer/compose.yml @@ -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