forked from mystiq/dex
Add detailed description to docker-entrypoint.sh
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
This commit is contained in:
parent
3241fd4ae2
commit
7f744598f5
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,11 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
### Usage: /docker-entrypoint.sh <command> <args>
|
||||
### * If command equals to "serve", config file for serving will be preprocessed using gomplate and saved to tmp dir.
|
||||
### Example: docker-entrypoint.sh serve config.yaml = dex serve /tmp/dex-config.yaml-ABCDEFG
|
||||
### * If command is not in the list of known dex commands, it will be executed bypassing entrypoint.
|
||||
### Example: docker-entrypoint.sh echo "Hello!" = echo "Hello!"
|
||||
|
||||
command=$1
|
||||
|
||||
case "$command" in
|
||||
|
|
Loading…
Reference in a new issue