Compare commits

..

5 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
734317f3b4 Release 1.17.0 2021-12-25 16:49:53 -05:00
Jose Diaz-Gonzalez
e45e0b4d74 feat: add ability to skip restarts when linking datastores
This allows multiple datastores to be linked at a given time, thus decreasing provisioning times.
2021-12-25 16:44:15 -05:00
Jose Diaz-Gonzalez
ba12aba367 Release 1.16.1 2021-11-27 14:02:23 -05:00
Jose Diaz-Gonzalez
157f48e1db Merge pull request #144 from dokku/dependabot/docker/mongo-5.0.4
chore(deps): bump mongo from 5.0.3 to 5.0.4
2021-11-27 14:02:16 -05:00
dependabot[bot]
6ea58f6cc8 chore(deps): bump mongo from 5.0.3 to 5.0.4
Bumps mongo from 5.0.3 to 5.0.4.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-16 13:10:05 +00:00
4 changed files with 13 additions and 5 deletions

View File

@@ -1 +1 @@
FROM mongo:5.0.3
FROM mongo:5.0.4

View File

@@ -1,6 +1,6 @@
# dokku mongo [![Build Status](https://img.shields.io/github/workflow/status/dokku/dokku-mongo/CI/master?style=flat-square "Build Status")](https://github.com/dokku/dokku-mongo/actions/workflows/ci.yml?query=branch%3Amaster) [![IRC Network](https://img.shields.io/badge/irc-libera-blue.svg?style=flat-square "IRC Libera")](https://webchat.libera.chat/?channels=dokku)
Official mongo plugin for dokku. Currently defaults to installing [mongo 5.0.3](https://hub.docker.com/_/mongo/).
Official mongo plugin for dokku. Currently defaults to installing [mongo 5.0.4](https://hub.docker.com/_/mongo/).
## Requirements

View File

@@ -533,7 +533,11 @@ service_link() {
fi
[[ -n "$SERVICE_QUERYSTRING" ]] && SERVICE_URL="${SERVICE_URL}?${SERVICE_QUERYSTRING}"
plugn trigger service-action post-link "$SERVICE" "$APP"
config_set "$APP" "${ALIAS}_URL=$SERVICE_URL"
if [[ "$DOKKU_GLOBAL_FLAGS" == *"--no-restart"* ]]; then
config_set --no-restart "$APP" "${ALIAS}_URL=$SERVICE_URL"
else
config_set "$APP" "${ALIAS}_URL=$SERVICE_URL"
fi
plugn trigger service-action post-link-complete "$SERVICE" "$APP"
}
@@ -857,7 +861,11 @@ service_unlink() {
[[ -z ${LINK[*]} ]] && dokku_log_fail "Not linked to app $APP"
plugn trigger service-action post-unlink "$SERVICE" "$APP"
config_unset "$APP" "${LINK[@]}"
if [[ "$DOKKU_GLOBAL_FLAGS" == *"--no-restart"* ]]; then
config_unset --no-restart "$APP" "${LINK[@]}"
else
config_unset "$APP" "${LINK[@]}"
fi
plugn trigger service-action post-unlink-complete "$SERVICE" "$APP"
}

View File

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