move plugin-* to plugin: namespace

This commit is contained in:
Michael Hobbs
2015-09-08 12:14:57 -07:00
committed by Jose Diaz-Gonzalez
parent e873f27eac
commit 18d234a925
8 changed files with 77 additions and 56 deletions

View File

@@ -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
```

View File

@@ -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:

View File

@@ -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