mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
move plugin-* to plugin: namespace
This commit is contained in:
committed by
Jose Diaz-Gonzalez
parent
e873f27eac
commit
18d234a925
@@ -65,7 +65,7 @@ A few notes:
|
||||
```shell
|
||||
IMAGE=$(docker images | grep "user/repo" | awk '{print $3}')
|
||||
if [[ -z $IMAGE ]]; then
|
||||
dokku_log_fail "user/repo image not found... Did you run 'dokku plugins-install'?"
|
||||
dokku_log_fail "user/repo image not found... Did you run 'dokku plugin:install'?"
|
||||
fi
|
||||
```
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ The following plugn triggers describe those available to a dokku installation. A
|
||||
### `install`
|
||||
|
||||
- Description: Used to setup any files/configuration for a plugn.
|
||||
- Invoked by: `dokku plugins-install`.
|
||||
- Invoked by: `dokku plugin:install`.
|
||||
- Arguments: None
|
||||
- Example:
|
||||
|
||||
@@ -50,8 +50,8 @@ fi
|
||||
|
||||
### `dependencies`
|
||||
|
||||
- Description: Used to install system-level dependencies. Invoked by `plugins-install-dependencies`.
|
||||
- Invoked by: `dokku plugins-install-dependencies`
|
||||
- Description: Used to install system-level dependencies. Invoked by `plugin:install-dependencies`.
|
||||
- Invoked by: `dokku plugin:install-dependencies`
|
||||
- Arguments: None
|
||||
- Example:
|
||||
|
||||
@@ -77,7 +77,7 @@ esac
|
||||
### `update`
|
||||
|
||||
- Description: Can be used to run plugn updates on a regular interval. You can schedule the invoker in a cron-task to ensure your system gets regular updates.
|
||||
- Invoked by: `dokku plugins-update`.
|
||||
- Invoked by: `dokku plugin:update`.
|
||||
- Arguments: None
|
||||
- Example:
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ Let's take a quick look at the current dokku nginx plugin that's shipped with do
|
||||
```shell
|
||||
cd /var/lib/dokku/plugins/available
|
||||
git clone <git url>
|
||||
dokku plugins-install
|
||||
dokku plugin:install
|
||||
```
|
||||
## Creating your own plugin
|
||||
|
||||
|
||||
Reference in New Issue
Block a user