Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c728a443c2 | ||
|
|
fe6afbb51b | ||
|
|
945e43cb65 | ||
|
|
936fcb5931 | ||
|
|
e59116d69e | ||
|
|
4376ad269d | ||
|
|
674ba8b8c9 | ||
|
|
d11614bd50 | ||
|
|
5925f9c4d4 | ||
|
|
507526b01c | ||
|
|
81771f0e2c | ||
|
|
451c9aea70 | ||
|
|
e82d66a56b | ||
|
|
d602498d4f | ||
|
|
15fa64e838 | ||
|
|
cd7e66c454 | ||
|
|
f7fc11192d |
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
|
||||
|
||||
|
||||
11
.github/workflows/tagged-release.yml
vendored
11
.github/workflows/tagged-release.yml
vendored
@@ -5,15 +5,16 @@ name: "tagged-release"
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
tagged-release:
|
||||
name: tagged-release
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
steps:
|
||||
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v2.2.2
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
prerelease: false
|
||||
generate_release_notes: true
|
||||
make_latest: "true"
|
||||
|
||||
@@ -1 +1 @@
|
||||
FROM postgres:17.3
|
||||
FROM postgres:17.4
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# dokku postgres [](https://github.com/dokku/dokku-postgres/actions/workflows/ci.yml?query=branch%3Amaster) [](https://webchat.libera.chat/?channels=dokku)
|
||||
|
||||
Official postgres plugin for dokku. Currently defaults to installing [postgres 17.3](https://hub.docker.com/_/postgres/).
|
||||
Official postgres plugin for dokku. Currently defaults to installing [postgres 17.4](https://hub.docker.com/_/postgres/).
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -11,7 +11,7 @@ Official postgres plugin for dokku. Currently defaults to installing [postgres 1
|
||||
|
||||
```shell
|
||||
# on 0.19.x+
|
||||
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres
|
||||
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git --name postgres
|
||||
```
|
||||
|
||||
## Commands
|
||||
@@ -359,7 +359,7 @@ Expose the service on the service's normal ports, allowing access to it from the
|
||||
dokku postgres:expose lollipop 5432
|
||||
```
|
||||
|
||||
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 postgres:expose lollipop 127.0.0.1:5432
|
||||
|
||||
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"
|
||||
|
||||
|
||||
@@ -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}",
|
||||
"```",
|
||||
]
|
||||
)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[plugin]
|
||||
description = "dokku postgres service plugin"
|
||||
version = "1.42.0"
|
||||
version = "1.43.1"
|
||||
[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