mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 23:38:32 +08:00
21 lines
304 B
Bash
Executable File
21 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
# set -o xtrace # Uncomment this line for debugging purpose
|
|
|
|
# Load libraries
|
|
. /liblog.sh
|
|
. /libos.sh
|
|
. /libkong.sh
|
|
|
|
# Load Kong environment variables
|
|
eval "$(kong_env)"
|
|
|
|
info "** Starting Kong **"
|
|
|
|
exec kong start
|