Compare commits

..

9 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
827f94ff95 Release 1.38.6
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-04-28 23:56:47 -04:00
Jose Diaz-Gonzalez
49ae733f70 Merge pull request #225 from dokku/fix-typo
docs: fix typo in generated docs
2025-04-28 23:42:25 -04:00
Jose Diaz-Gonzalez
ccdbe3ce41 docs: regenerate readme 2025-04-28 23:41:15 -04:00
Jose Diaz-Gonzalez
2a5e5195d3 Merge pull request #224 from dokku/dependabot/github_actions/softprops/action-gh-release-2.2.2
chore(deps): bump softprops/action-gh-release from 2.2.1 to 2.2.2
2025-04-28 23:17:56 -04:00
Jose Diaz-Gonzalez
56b886cd62 docs: correct typo in generated readme 2025-04-28 23:07:49 -04:00
dependabot[bot]
080b961bc2 chore(deps): bump softprops/action-gh-release from 2.2.1 to 2.2.2
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](https://github.com/softprops/action-gh-release/compare/v2.2.1...v2.2.2)

---
updated-dependencies:
- dependency-name: softprops/action-gh-release
  dependency-version: 2.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-21 14:32:34 +00:00
Jose Diaz-Gonzalez
f8f515ac31 Merge pull request #223 from dokku/update-workflows
chore: bump runs-on image from ubuntu-22.04 to ubuntu-24.04
2025-04-17 21:11:05 -04:00
Jose Diaz-Gonzalez
93e438e9f1 fix: use maintained version of python 2025-04-17 20:46:19 -04:00
Jose Diaz-Gonzalez
54b363a1f1 chore: bump runs-on image from ubuntu-22.04 to ubuntu-24.04 2025-04-17 20:43:55 -04:00
6 changed files with 11 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ name: CI
on:
pull_request:
branches:
- '*'
- "*"
push:
branches:
- master
@@ -17,7 +17,7 @@ concurrency:
jobs:
unit-tests-master:
name: unit-tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
DOKKU_VERSION: master
@@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.7.x'
python-version: "3.13"
- run: make setup
@@ -59,7 +59,7 @@ jobs:
unit-tests-0_19_0:
name: unit-tests-0.19.0
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
DOKKU_TAG: v0.19.0
@@ -70,7 +70,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.7.x'
python-version: "3.13"
- run: make setup

View File

@@ -10,11 +10,11 @@ on:
jobs:
tagged-release:
name: tagged-release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Release
uses: softprops/action-gh-release@v2.2.1
uses: softprops/action-gh-release@v2.2.2
with:
generate_release_notes: true
make_latest: "true"

View File

@@ -346,7 +346,7 @@ Expose the service on the service's normal ports, allowing access to it from the
dokku mongo:expose lollipop 27017 27018 27019 28017
```
Expose the service on the service's normal ports, with the first on a specified ip adddress (127.0.0.1):
Expose the service on the service's normal ports, with the first on a specified ip address (127.0.0.1):
```shell
dokku mongo:expose lollipop 127.0.0.1:27017 27018 27019 28017

2
Vagrantfile vendored
View File

@@ -1,7 +1,7 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
BOX_NAME = ENV["BOX_NAME"] || "bento/ubuntu-22.04"
BOX_NAME = ENV["BOX_NAME"] || "bento/ubuntu-24.04"
BOX_MEMORY = ENV["BOX_MEMORY"] || "2048"
DOKKU_VERSION = "master"

View File

@@ -1,4 +1,4 @@
[plugin]
description = "dokku mongo service plugin"
version = "1.38.5"
version = "1.38.6"
[plugin.config]

View File

@@ -8,7 +8,7 @@ source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions"
service-expose-cmd() {
#E expose the service on the service's normal ports, allowing access to it from the public interface (0.0.0.0)
#E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop ${PLUGIN_DATASTORE_PORTS[@]}
#E expose the service on the service's normal ports, with the first on a specified ip adddress (127.0.0.1)
#E expose the service on the service's normal ports, with the first on a specified ip address (127.0.0.1)
#E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop 127.0.0.1:${PLUGIN_DATASTORE_PORTS[@]}
#A service, service to run command against
#A ports, a list of ports to run against