Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e07724019a | ||
|
|
61ba54bf40 | ||
|
|
59769c55dd | ||
|
|
77065571ac | ||
|
|
7f3d13fd14 | ||
|
|
5ac22479f8 | ||
|
|
827f94ff95 | ||
|
|
49ae733f70 | ||
|
|
ccdbe3ce41 | ||
|
|
2a5e5195d3 | ||
|
|
56b886cd62 | ||
|
|
080b961bc2 | ||
|
|
f8f515ac31 | ||
|
|
93e438e9f1 | ||
|
|
54b363a1f1 | ||
|
|
e12ec526e4 | ||
|
|
2a2b7111b7 | ||
|
|
f12cb7ba8f |
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -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
|
||||
|
||||
|
||||
4
.github/workflows/tagged-release.yml
vendored
4
.github/workflows/tagged-release.yml
vendored
@@ -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"
|
||||
|
||||
@@ -1 +1 @@
|
||||
FROM mongo:8.0.6
|
||||
FROM mongo:8.0.10
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# dokku mongo [](https://github.com/dokku/dokku-mongo/actions/workflows/ci.yml?query=branch%3Amaster) [](https://webchat.libera.chat/?channels=dokku)
|
||||
|
||||
Official mongo plugin for dokku. Currently defaults to installing [mongo 8.0.6](https://hub.docker.com/_/mongo/).
|
||||
Official mongo plugin for dokku. Currently defaults to installing [mongo 8.0.10](https://hub.docker.com/_/mongo/).
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -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
2
Vagrantfile
vendored
@@ -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"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[plugin]
|
||||
description = "dokku mongo service plugin"
|
||||
version = "1.38.4"
|
||||
version = "1.38.8"
|
||||
[plugin.config]
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user