mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 07:30:24 +00:00
gitea
This commit is contained in:
parent
4e0b9c6e8d
commit
e3f9a5d0c0
3 changed files with 4 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
# modify time: 202402290820, you can modify here to trigger Docker Build action
|
# modify time: 202402291259, you can modify here to trigger Docker Build action
|
||||||
# Dockerfile refer to: https://github.com/go-gitea/gitea/blob/main/Dockerfile
|
# Dockerfile refer to: https://github.com/go-gitea/gitea/blob/main/Dockerfile
|
||||||
FROM gitea/gitea:1.20.4
|
FROM gitea/gitea:1.20.4
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
cred_path="/data/gitea/credential"
|
exit 125
|
||||||
if [ -e "$cred_path" ]; then
|
|
||||||
echo "File $cred_path exists. disable /etc/s6/user"
|
|
||||||
exit 125
|
|
||||||
else
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
|
@ -10,13 +10,14 @@ admin_username="websoft9"
|
||||||
admin_email="admin@mydomain.com"
|
admin_email="admin@mydomain.com"
|
||||||
|
|
||||||
while [ "$response" != "200" ]; do
|
while [ "$response" != "200" ]; do
|
||||||
|
sleep 3
|
||||||
response=$(curl -s -o /dev/null -w "%{http_code}" localhost:3000)
|
response=$(curl -s -o /dev/null -w "%{http_code}" localhost:3000)
|
||||||
if [ "$response" = "200" ]; then
|
if [ "$response" = "200" ]; then
|
||||||
echo "gitea is runing"
|
echo "gitea is runing"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
count=$((count+1))
|
count=$((count+1))
|
||||||
if [ $count -gt 10 ]; then
|
if [ $count -gt 60 ]; then
|
||||||
echo "gitea is not runing"
|
echo "gitea is not runing"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue