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