From 7a828308d49c844af125ccb42d8f67c91f91e344 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Thu, 27 Nov 2025 13:57:29 -0500 Subject: [PATCH] add phpmyadmin --- tasks/mariadb.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tasks/mariadb.yml b/tasks/mariadb.yml index 5331f25..200c7bf 100644 --- a/tasks/mariadb.yml +++ b/tasks/mariadb.yml @@ -17,3 +17,18 @@ env: MYSQL_USER: "root" MYSQL_ROOT_PASSWORD: "{{ GLOBAL_POSTGRES_PASSWORD }}" + +- name: Deploy PHPMyAdmin + include_role: + name: docker + vars: + name: phpmyadmin + image: + name: phpmyadmin + tag: latest + labels: + traefik.enable: "true" + traefik.http.routers.pma.rule: Host(`pma.landite.games`) + traefik.http.routers.pma.entrypoints: webSecure + traefik.http.routers.pma.tls.certresolver: letsencrypt + traefik.http.services.pma.loadbalancer.server.port: "8080"