Sha256: 308885d599c9a2a57d61f493012b16e0930637fdc934a94f98b3f0f46b6ac553

Contents?: true

Size: 363 Bytes

Versions: 12

Compression:

Stored size: 363 Bytes

Contents

#!/bin/sh -e

# A tool container entrypoint that tries to do the right thing whether you want
# an interactive shell environment or run a command directly.
#
# It starts bash if
#   - there is a tty (ie. docker was run with -t),
#   - there are no arguments.
#
# Otherwise it runs the tool.

TOOL=conjur

[ -t 1 -a $# -eq 0 ] && exec bash

# else
exec $TOOL "$@"

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
conjur-cli-6.2.6 standalone.entrypoint
conjur-cli-6.2.5 standalone.entrypoint
conjur-cli-6.2.4 standalone.entrypoint
conjur-cli-6.2.3 standalone.entrypoint
conjur-cli-6.2.2 standalone.entrypoint
conjur-cli-6.2.1 standalone.entrypoint
conjur-cli-6.2.0 standalone.entrypoint
conjur-cli-5.6.6 standalone.entrypoint
conjur-cli-6.1.0 standalone.entrypoint
conjur-cli-6.0.1 standalone.entrypoint
conjur-cli-6.0.0 standalone.entrypoint
conjur-cli-6.0.0.rc1 standalone.entrypoint