-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.sh
executable file
·38 lines (33 loc) · 959 Bytes
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
###############################
# Author: Oyefule Oluwatayo
# Date: 13/06/2024
#
# This script outputs the node health
#
# Version: v1
###############################
set -e
set -u
set -o pipefail
# Print all environment variables for debugging (optional, remove in production)
# echo "Debug: Received Environment Variables:"
# env | sort
docker_run_command=(
docker run
--rm
-e "INPUT_HOST=${INPUT_HOST:-}"
-e "INPUT_PROTOCOL=${INPUT_PROTOCOL:-}"
-e "INPUT_PORT=${INPUT_PORT:-}"
-e "INPUT_USER=${INPUT_USER:-}"
-e "INPUT_PASSWORD=${INPUT_PASSWORD:-}"
-e "INPUT_PKEY=${INPUT_PKEY:-}"
-e "INPUT_PASSPHRASE=${INPUT_PASSPHRASE:-}"
-e "INPUT_GITHUB_REPO=${INPUT_GITHUB_REPO:-}"
-e "INPUT_STARTUP_SCRIPT=${INPUT_STARTUP_SCRIPT:-}"
-e "INPUT_API_PORT=${INPUT_API_PORT:-}"
-e "INPUT_ENV=${INPUT_ENV:-}"
gentcod/do-nginx
)
# Execute the docker run command
"${docker_run_command[@]}"