3fcac0ac35
🆕 **New Template**: -> ℹ️ **phpMyAdmin**: phpMyAdmin is a web-based database management tool for administering your MySQL and MariaDB databases through a user-friendly interface.
22 lines
666 B
YAML
22 lines
666 B
YAML
# documentation: https://docs.phpmyadmin.net/en/latest/
|
|
# slogan: phpMyAdmin is a web-based database management tool for administering your MySQL and MariaDB databases through a user-friendly interface.
|
|
# tags: database management
|
|
|
|
services:
|
|
phpmyadmin:
|
|
image: lscr.io/linuxserver/phpmyadmin:latest
|
|
environment:
|
|
- SERVICE_FQDN_PHPMYADMIN
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Madrid
|
|
- PMA_ARBITRARY=1
|
|
- PMA_ABSOLUTE_URI=$SERVICE_FQDN_PHPMYADMIN
|
|
volumes:
|
|
- phpmyadmin-config:/config
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:80"]
|
|
interval: 2s
|
|
timeout: 10s
|
|
retries: 15
|