Compare commits

...

6 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
900d772398 Release 1.41.2
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-09 07:11:56 -04:00
Jose Diaz-Gonzalez
ea120dd613 Merge pull request #185 from dokku/7470-name-argument
docs: ensure --name flag is used in installation docs
2025-03-09 06:05:33 -05:00
Jose Diaz-Gonzalez
7d59d4ee36 docs: ensure --name flag is used in installation docs
Closes dokku/dokku#7470
2025-03-09 07:03:59 -04:00
Jose Diaz-Gonzalez
4ddf27d340 Release 1.41.1
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-02-02 00:29:21 -05:00
Jose Diaz-Gonzalez
6a75d5d509 Merge pull request #184 from dokku/dependabot/docker/mysql-9.2.0
chore(deps): bump mysql from 9.1.0 to 9.2.0
2025-02-01 23:29:07 -06:00
dependabot[bot]
31f737bb09 chore(deps): bump mysql from 9.1.0 to 9.2.0
Bumps mysql from 9.1.0 to 9.2.0.

---
updated-dependencies:
- dependency-name: mysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-23 03:22:53 +00:00
4 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
FROM mysql:9.1.0
FROM mysql:9.2.0

View File

@@ -1,6 +1,6 @@
# dokku mysql [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-mysql/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-mysql/actions/workflows/ci.yml?query=branch%3Amaster) [![IRC Network](https://img.shields.io/badge/irc-libera-blue.svg?style=flat-square "IRC Libera")](https://webchat.libera.chat/?channels=dokku)
Official mysql plugin for dokku. Currently defaults to installing [mysql 9.1.0](https://hub.docker.com/_/mysql/).
Official mysql plugin for dokku. Currently defaults to installing [mysql 9.2.0](https://hub.docker.com/_/mysql/).
## Requirements
@@ -11,7 +11,7 @@ Official mysql plugin for dokku. Currently defaults to installing [mysql 9.1.0](
```shell
# on 0.19.x+
sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git mysql
sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git --name mysql
```
## Commands

View File

@@ -110,7 +110,7 @@ def installation_section(service, dokku_version):
"",
"```shell",
f"# on {dokku_version}",
f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git {service}",
f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git --name {service}",
"```",
]
)

View File

@@ -1,4 +1,4 @@
[plugin]
description = "dokku mysql service plugin"
version = "1.41.0"
version = "1.41.2"
[plugin.config]