Skip to content

Commit

Permalink
Did someone say rebuild images?
Browse files Browse the repository at this point in the history
  • Loading branch information
hwalker928 committed Sep 26, 2023
1 parent dc08062 commit 4af1262
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generic/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cd /home/container
# Make internal Docker IP address available to processes.
export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`

# Replace Startup variables
# Replace Startup variables.
MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
echo "customer@sparkedhost:~# ${MODIFIED_STARTUP}"

Expand Down
2 changes: 1 addition & 1 deletion java/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ fi
# Print startup command to console
echo -e "\033[1;33mcustomer@sparkedhost:~\$\033[0m ${MODIFIED_STARTUP}"

# Run the server
# Run the server.
eval ${MODIFIED_STARTUP}
2 changes: 1 addition & 1 deletion nodejs/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
echo "customer@sparkedhost:~# ${MODIFIED_STARTUP}"

# Run the Server
# Run the Server.
eval ${MODIFIED_STARTUP}
2 changes: 1 addition & 1 deletion python/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
echo "customer@sparkedhost:~# ${MODIFIED_STARTUP}"

# Run the Server
# Run the Server.
eval ${MODIFIED_STARTUP}

0 comments on commit 4af1262

Please sign in to comment.