Compare commits

...

14 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
4376521a80 Release 1.38.4
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-30 14:02:53 -04:00
Jose Diaz-Gonzalez
7f2a572810 Merge pull request #221 from dokku/dependabot/docker/mongo-8.0.6
chore(deps): bump mongo from 8.0.5 to 8.0.6
2025-03-30 14:02:49 -04:00
dependabot[bot]
f0ccd7491a chore(deps): bump mongo from 8.0.5 to 8.0.6
Bumps mongo from 8.0.5 to 8.0.6.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-25 13:06:07 +00:00
Jose Diaz-Gonzalez
1db4b7b041 Merge pull request #220 from dokku/maintained-action
ci: use maintained action for creating automated releases
2025-03-13 18:51:01 -05:00
Jose Diaz-Gonzalez
62cbfea79e ci: use maintained action for creating automated releases 2025-03-13 19:46:50 -04:00
Jose Diaz-Gonzalez
60a38d9c14 Release 1.38.3
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-09 07:11:54 -04:00
Jose Diaz-Gonzalez
23d30b8d68 Merge pull request #219 from dokku/7470-name-argument
docs: ensure --name flag is used in installation docs
2025-03-09 06:05:31 -05:00
Jose Diaz-Gonzalez
544b5dc18b docs: ensure --name flag is used in installation docs
Closes dokku/dokku#7470
2025-03-09 07:03:59 -04:00
Jose Diaz-Gonzalez
f5262cd605 Release 1.38.2
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-05 20:27:30 -05:00
Jose Diaz-Gonzalez
e734a57679 Merge pull request #218 from dokku/dependabot/docker/mongo-8.0.5
chore(deps): bump mongo from 8.0.4 to 8.0.5
2025-03-05 19:27:22 -06:00
dependabot[bot]
4e1174f259 chore(deps): bump mongo from 8.0.4 to 8.0.5
Bumps mongo from 8.0.4 to 8.0.5.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-25 13:47:03 +00:00
Jose Diaz-Gonzalez
b720c3977e Release 1.38.1
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-12-11 09:37:31 -05:00
Jose Diaz-Gonzalez
537df32822 Merge pull request #217 from dokku/dependabot/docker/mongo-8.0.4
chore(deps): bump mongo from 8.0.3 to 8.0.4
2024-12-11 09:36:48 -05:00
dependabot[bot]
c74caffd06 chore(deps): bump mongo from 8.0.3 to 8.0.4
Bumps mongo from 8.0.3 to 8.0.4.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-10 13:18:18 +00:00
5 changed files with 10 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ name: "tagged-release"
on:
push:
tags:
- '*'
- "*"
jobs:
tagged-release:
@@ -13,7 +13,8 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
- name: Release
uses: softprops/action-gh-release@v2.2.1
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
generate_release_notes: true
make_latest: "true"

View File

@@ -1 +1 @@
FROM mongo:8.0.3
FROM mongo:8.0.6

View File

@@ -1,6 +1,6 @@
# dokku mongo [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-mongo/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-mongo/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 mongo plugin for dokku. Currently defaults to installing [mongo 8.0.3](https://hub.docker.com/_/mongo/).
Official mongo plugin for dokku. Currently defaults to installing [mongo 8.0.6](https://hub.docker.com/_/mongo/).
## Requirements
@@ -11,7 +11,7 @@ Official mongo plugin for dokku. Currently defaults to installing [mongo 8.0.3](
```shell
# on 0.19.x+
sudo dokku plugin:install https://github.com/dokku/dokku-mongo.git mongo
sudo dokku plugin:install https://github.com/dokku/dokku-mongo.git --name mongo
```
## 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 mongo service plugin"
version = "1.38.0"
version = "1.38.4"
[plugin.config]