forked from blinko-space/blinko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.sh
82 lines (66 loc) · 2.59 KB
/
update.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
# Colors for better visibility
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
container_name="blinko-website"
image_name="blinkospace/blinko:latest"
backup_dir="blinko-backup-$(date +"%Y%m%d_%H%M%S")"
docker_volume=""
# Step 1: Backup data from the container
echo -e "${YELLOW}🔄 Backing up data from the container...${NC}"
# Create backup directory
mkdir -p "$backup_dir"
# Copy data from the container
if [ "$(docker ps -q -f name=$container_name)" ]; then
docker cp "${container_name}:/app/.blinko" "$backup_dir"
if [ $? -ne 0 ]; then
echo -e "${RED}Failed to backup data from the container. Please check the container name and your Docker setup.${NC}"
exit 1
fi
echo -e "${GREEN}✅ Data backed up to: $backup_dir${NC}"
else
echo -e "${YELLOW}Container $container_name does not exist. Skipping backup.${NC}"
fi
# Step 2: Remove existing blinkospace/blinko Docker image
echo -e "${YELLOW}1. 🗑 Removing existing blinkospace/blinko Docker image...${NC}"
docker rmi "$image_name" -f
# Check if the container has a volume mounted
volume_path=$(docker inspect -f '{{ range .Mounts }}{{ if eq .Destination "/app/.blinko" }}{{ .Source }}{{ end }}{{ end }}' "$container_name")
if [ -z "$volume_path" ]; then
echo -e "${YELLOW}No existing volume found for container $container_name.${NC}"
else
echo -e "${YELLOW}Using existing volume: $volume_path${NC}"
docker_volume="-v $volume_path:/app/.blinko"
fi
if [ $? -ne 0 ]; then
echo -e "${RED}Failed to remove Docker image. It may not exist or there may be an issue with Docker.${NC}"
else
echo -e "${GREEN}Successfully removed Docker image: $image_name${NC}"
fi
# Step 3: Run the blinko-website container
echo -e "${YELLOW}2. ⏳ Starting the blinko-website container...${NC}"
# Check if the container is already running
if [ "$(docker ps -q -f name=$container_name)" ]; then
echo -e "${YELLOW}Container $container_name is already running. Restarting...${NC}"
docker stop "$container_name"
docker rm "$container_name"
fi
# Run the new container with the existing volume if found
docker run -d \
--name blinko-website \
--network blinko-network \
$docker_volume \
-p 1111:1111 \
-e NODE_ENV=production \
-e NEXTAUTH_SECRET=my_ultra_secure_nextauth_secret \
-e DATABASE_URL=postgresql://postgres:mysecretpassword@blinko-postgres:5432/postgres \
--restart always \
blinkospace/blinko:latest
if [ $? -ne 0 ]; then
echo -e "${RED}Failed to start Docker container. Please check your Docker setup.${NC}"
exit 1
fi
echo -e "${GREEN}✅ $container_name is up and running.${NC}"