mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-28 01:07:07 +00:00
added whodb and phpmyadmin
This commit is contained in:
parent
1c2b99dc0f
commit
547ec89625
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user