added whodb and phpmyadmin

This commit is contained in:
dominikhoebert 2024-07-28 16:39:22 +02:00
parent 1c2b99dc0f
commit 547ec89625
2 changed files with 30 additions and 7 deletions

View File

@ -47,7 +47,7 @@
- demo: https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes - demo: https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes
- stirlingpdf - stirlingpdf
- mariadb-docker: - mariadb-docker:
- phpmyadmin - phpmyadmin https://hub.docker.com/_/phpmyadmin
- https://github.com/sqlchat/sqlchat - https://github.com/sqlchat/sqlchat
- https://github.com/beekeeper-studio/beekeeper-studio - https://github.com/beekeeper-studio/beekeeper-studio
- https://dbgate.org/ - https://dbgate.org/
@ -58,6 +58,8 @@
- guacamole - guacamole
- webtrees - webtrees
- Graphana Loki - Graphana Loki
- whodb
- phpmyadmin
## Tools ## Tools

View File

@ -1,14 +1,12 @@
# https://www.adminer.org/
# Use root/example as user/password credentials # Use root/example as user/password credentials
version: '3.1' name: mariadb
services: services:
db: mariadb:
image: mariadb image: mariadb
container_name: db container_name: mariadb
restart: always restart: always
ports: ports:
- 3306:3306 - 3306:3306
@ -19,9 +17,32 @@ services:
volumes: volumes:
- ./mysql:/var/lib/mysql - ./mysql:/var/lib/mysql
# optionale web DB clients/IDEs
# https://www.adminer.org/
# Server: mariadb
adminer: adminer:
image: adminer image: adminer
container_name: adminer container_name: adminer
restart: always
ports: ports:
- 8081:8080 - 8081:8080
# https://github.com/clidey/whodb
# Host Name: mariadb
whodb:
image: clidey/whodb
container_name: whodb
# volumes: # (optional for sqlite)
# - ./sample.db:/db/sample.db
ports:
- "8082:8080"
# https://hub.docker.com/_/phpmyadmin
phpmyadmin:
image: phpmyadmin
container_name: phpmyadmin
ports:
- 8083:80
environment:
- PMA_ARBITRARY=1
- PMA_HOST=mariadb