Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
772f677d0f | ||
|
|
078c2c58d4 | ||
|
|
6316eb7d7d | ||
|
|
7f254ed43e | ||
|
|
07c5006247 | ||
|
|
985ef3d19f | ||
|
|
02e828c6aa | ||
|
|
1f8a288d80 | ||
|
|
91734c6a15 | ||
|
|
6d0637c581 | ||
|
|
0a3a272b5e | ||
|
|
435ca9f8dc | ||
|
|
88ab215473 | ||
|
|
731429e175 | ||
|
|
2211d7a095 | ||
|
|
4567903371 | ||
|
|
cd1923eb9f | ||
|
|
62e132ed2d |
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 redis:7.4.2
|
||||
FROM redis:8.0.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# dokku redis [](https://github.com/dokku/dokku-redis/actions/workflows/ci.yml?query=branch%3Amaster) [](https://webchat.libera.chat/?channels=dokku)
|
||||
|
||||
Official redis plugin for dokku. Currently defaults to installing [redis 7.4.2](https://hub.docker.com/_/redis/).
|
||||
Official redis plugin for dokku. Currently defaults to installing [redis 8.0.1](https://hub.docker.com/_/redis/).
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -345,7 +345,7 @@ Expose the service on the service's normal ports, allowing access to it from the
|
||||
dokku redis:expose lollipop 6379
|
||||
```
|
||||
|
||||
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 redis:expose lollipop 127.0.0.1:6379
|
||||
|
||||
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 redis service plugin"
|
||||
version = "1.39.3"
|
||||
version = "1.40.0"
|
||||
[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