From 7c86163a5b1bab71af1481c7f4f70397ec7f4aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Bajsarowicz?= Date: Sun, 22 Mar 2026 21:18:02 +0100 Subject: [PATCH] docs: add phpMyAdmin to global services list Add phpmyadmin.warden.test URL and WARDEN_PHPMYADMIN_ENABLE setting to the global services documentation. --- services.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services.md b/services.md index 127a45a..38e401a 100644 --- a/services.md +++ b/services.md @@ -6,6 +6,7 @@ After running `warden svc up` for the first time following installation, the fol * [https://portainer.warden.test/](https://portainer.warden.test/) * [https://dnsmasq.warden.test/](https://dnsmasq.warden.test/) * [https://mailhog.warden.test/](https://mailhog.warden.test/) +* [https://phpmyadmin.warden.test/](https://phpmyadmin.warden.test/) ## Customizable Settings @@ -16,6 +17,7 @@ The following options are available (with default values indicated): * `TRAEFIK_LISTEN=127.0.0.1` may be set to `0.0.0.0` for example to have Traefik accept connections from other devices on the local network. * `WARDEN_RESTART_POLICY=always` may be set to `no` to prevent Docker from restarting these service containers or any other valid [restart policy](https://docs.docker.com/config/containers/start-containers-automatically/#use-a-restart-policy) value. * `WARDEN_SERVICE_DOMAIN=warden.test` may be set to a domain of your choosing if so desired. Please note that this will not currently change network settings or alter `dnsmasq` configuration. Any TLD other than `test` will require DNS resolution be manually configured. +* `WARDEN_PHPMYADMIN_ENABLE=1` may be set to `0` to disable the phpMyAdmin global service. :::{warning} Setting ``TRAEFIK_LISTEN=0.0.0.0`` can be quite useful in some cases, but be aware that causing Traefik to listen for requests publicly poses a security risk when on public WiFi or networks otherwise outside of your control.