Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MariaDB 11.4 - LTS #60

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ _For managing MySQL/MariaDB databases visually._

* Viewable at: http://localhost:8080
* It supports the following databases...
* mariadb106 (lts)
* mariadb106 (lts, deprecated)
* mariadb1011 (lts)
* mariadb1104 (lts)

### Mailpit
_For mimicking an email inbox (ala mailtrap) for local usage._
Expand Down
11 changes: 11 additions & 0 deletions docker/data-source-services/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ services:
- ./proxy_increase.conf:/etc/nginx/proxy.conf
networks:
- st-internal
mariadb1104:
image: mariadb:11.4
container_name: sourcetoad_mariadb1104
ports:
- "33114:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_USER=mariadb_user
- MYSQL_PASSWORD=mariadb_pass
networks:
- st-internal
mariadb1011:
image: mariadb:10.11
container_name: sourcetoad_mariadb1011
Expand Down
2 changes: 1 addition & 1 deletion docker/data-source-tools/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
networks:
- st-internal
environment:
PMA_HOSTS: mariadb1011,mariadb106
PMA_HOSTS: mariadb1104,mariadb1011,mariadb106
PMA_USER: root
PMA_PASSWORD: root
networks:
Expand Down
Loading