Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2e0a9b6c6e | ||
|
|
4b6ca068e7 | ||
|
|
7a3e380c24 | ||
|
|
b56616cdc7 |
57
.github/labels.yml
vendored
Normal file
57
.github/labels.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
labels:
|
||||
- name: bc-break
|
||||
color: eb6420
|
||||
- name: blocks release
|
||||
color: "000000"
|
||||
- name: 'difficulty: easy'
|
||||
color: c5def5
|
||||
- name: 'difficulty: hard'
|
||||
color: e99695
|
||||
- name: 'difficulty: medium'
|
||||
color: fef2c0
|
||||
- name: hacktoberfest
|
||||
color: b0581d
|
||||
- name: 'needs: documentation'
|
||||
color: c2e0c6
|
||||
- name: 'needs: more info'
|
||||
color: c2e0c6
|
||||
- name: 'needs: rebase'
|
||||
color: c2e0c6
|
||||
- name: 'needs: tests'
|
||||
color: c2e0c6
|
||||
- name: 'status: duplicate'
|
||||
color: cccccc
|
||||
- name: 'status: fix-provided'
|
||||
color: c5def5
|
||||
- name: 'status: future'
|
||||
color: c5def5
|
||||
- name: 'status: has plan'
|
||||
color: c5def5
|
||||
- name: 'status: invalid'
|
||||
color: cccccc
|
||||
- name: 'status: merge for next minor'
|
||||
color: c5def5
|
||||
- name: 'status: merge for next patch'
|
||||
color: c5def5
|
||||
- name: 'status: wontfix'
|
||||
color: cccccc
|
||||
- name: 'type: bug'
|
||||
color: e01b1b
|
||||
- name: 'type: documentation'
|
||||
color: 0052cc
|
||||
- name: 'type: enhancement'
|
||||
color: 09ab3c
|
||||
- name: 'type: question'
|
||||
color: cc317c
|
||||
- name: 'type: refactor'
|
||||
color: 0052cc
|
||||
- name: 'type: rfc'
|
||||
color: 0052cc
|
||||
- name: 'type: roadmap'
|
||||
color: 0052cc
|
||||
- name: 'type: service'
|
||||
color: "5319e7"
|
||||
- name: 'type: support'
|
||||
color: cc317c
|
||||
- name: 'type: tests'
|
||||
color: 0052cc
|
||||
@@ -1,6 +1,6 @@
|
||||
# dokku postgres [](https://travis-ci.org/dokku/dokku-postgres) [](https://webchat.freenode.net/?channels=dokku)
|
||||
|
||||
Official postgres plugin for dokku. Currently defaults to installing [postgres 10.4](https://hub.docker.com/_/postgres/).
|
||||
Official postgres plugin for dokku. Currently defaults to installing [postgres 11.2](https://hub.docker.com/_/postgres/).
|
||||
|
||||
## requirements
|
||||
|
||||
@@ -60,7 +60,7 @@ dokku postgres:create lolipop
|
||||
# it *must* be compatible with the
|
||||
# official postgres image
|
||||
export POSTGRES_IMAGE="postgres"
|
||||
export POSTGRES_IMAGE_VERSION="10.4"
|
||||
export POSTGRES_IMAGE_VERSION="11.2"
|
||||
dokku postgres:create lolipop
|
||||
|
||||
# you can also specify custom environment
|
||||
|
||||
2
config
2
config
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
export POSTGRES_IMAGE=${POSTGRES_IMAGE:="postgres"}
|
||||
export POSTGRES_IMAGE_VERSION=${POSTGRES_IMAGE_VERSION:="10.4"}
|
||||
export POSTGRES_IMAGE_VERSION=${POSTGRES_IMAGE_VERSION:="11.2"}
|
||||
export POSTGRES_ROOT=${POSTGRES_ROOT:="$DOKKU_LIB_ROOT/services/postgres"}
|
||||
export POSTGRES_HOST_ROOT=${POSTGRES_HOST_ROOT:=$POSTGRES_ROOT}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[plugin]
|
||||
description = "dokku postgres service plugin"
|
||||
version = "1.6.1"
|
||||
version = "1.6.2"
|
||||
[plugin.config]
|
||||
|
||||
@@ -11,20 +11,20 @@ teardown() {
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:list) with no exposed ports, no linked apps" {
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:list"
|
||||
assert_contains "${lines[*]}" "l postgres:10.4 running - -"
|
||||
assert_contains "${lines[*]}" "l postgres:11.2 running - -"
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:list) with exposed ports" {
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:expose" l 4242
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:list"
|
||||
assert_contains "${lines[*]}" "l postgres:10.4 running 5432->4242 -"
|
||||
assert_contains "${lines[*]}" "l postgres:11.2 running 5432->4242 -"
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:list) with linked app" {
|
||||
dokku apps:create my_app
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:link" l my_app
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:list"
|
||||
assert_contains "${lines[*]}" "l postgres:10.4 running - my_app"
|
||||
assert_contains "${lines[*]}" "l postgres:11.2 running - my_app"
|
||||
dokku --force apps:destroy my_app
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user