-
Notifications
You must be signed in to change notification settings - Fork 117
/
local.sh
executable file
·41 lines (31 loc) · 1.06 KB
/
local.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
39
40
41
#!/bin/bash
# Stop all running Docker containers
echo "Stopping all running Docker containers..."
docker stop $(docker ps -aq)
# Build the Docker image
echo "Building Docker image..."
docker build -t no-code-architects-toolkit:testing .
# Read variables from .variables file
echo "Reading environment variables..."
VARS=$(cat .env_variables.json)
# Function to escape JSON strings for bash
escape_json() {
echo "$1" | sed 's/"/\\"/g'
}
# Build the docker run command with environment variables
CMD="docker run -p 8080:8080"
# Add environment variables from JSON
for key in $(echo "$VARS" | jq -r 'keys[]'); do
value=$(echo "$VARS" | jq -r --arg k "$key" '.[$k]')
# Handle nested JSON (specifically for GCP_SA_CREDENTIALS)
if [[ "$key" == "GCP_SA_CREDENTIALS" ]]; then
value=$(echo "$VARS" | jq -r --arg k "$key" '.[$k]')
value=$(escape_json "$value")
fi
CMD="$CMD -e $key=\"$value\""
done
# Complete the command
CMD="$CMD no-code-architects-toolkit:testing"
# Run the Docker container
echo "Running Docker container..."
eval "$CMD"