FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
netdata/.github/scripts/docker-test.sh at master · feiyunwill/netdata · GitHub
feiyunwill
/
netdata
Public
forked from
netdata/netdata
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
netdata
/
.github
/
scripts
/
docker-test.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
58 lines (46 loc) · 1.33 KB
Breadcrumbs
netdata
/
.github
/
scripts
/
docker-test.sh
Copy path
File metadata and controls
executable file
·
58 lines (46 loc) · 1.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!
/bin/sh
export
DEBIAN_FRONTEND=noninteractive
wait_for
() {
host=
"
${1}
"
port=
"
${2}
"
name=
"
${3}
"
timeout=
"
30
"
if
command
-v nc
>
/dev/null
;
then
netcat=
"
nc
"
elif
command
-v netcat
>
/dev/null
;
then
netcat=
"
netcat
"
else
printf
"
Unable to find a usable netcat command.\n
"
return
1
fi
printf
"
Waiting for %s on %s:%s ...
"
"
${name}
"
"
${host}
"
"
${port}
"
sleep 30
i=0
while
!
${netcat}
-z
"
${host}
"
"
${port}
"
;
do
sleep 1
if
[
"
$i
"
-gt
"
$timeout
"
]
;
then
printf
"
Timed out!\n
"
return
1
fi
i=
"
$((
i
+
1
))
"
done
printf
"
OK\n
"
}
apt-get update
&&
apt-get upgrade -y
&&
apt get install -y netcat
docker run -d --name=netdata \
-p 19999:19999 \
-v netdataconfig:/etc/netdata \
-v netdatalib:/var/lib/netdata \
-v netdatacache:/var/cache/netdata \
-v /etc/passwd:/host/etc/passwd:ro \
-v /etc/group:/host/etc/group:ro \
-v /proc:/host/proc:ro \
-v /sys:/host/sys:ro \
-v /etc/os-release:/host/etc/os-release:ro \
--cap-add SYS_PTRACE \
--security-opt apparmor=unconfined \
netdata/netdata:test
wait_for localhost 19999 netdata
||
exit
1
curl -sS http://127.0.0.1:19999/api/v1/info
>
./response
||
exit
1
cat ./response
jq
'
.version
'
./response
||
exit
1
Back
|
FazBrowse Home
|
New Git URL