We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d87d837 commit 081f657Copy full SHA for 081f657
starter.sh
@@ -32,14 +32,15 @@ else
32
exit 1
33
fi
34
35
-conf_file=""
36
-if [[ "${version%.*}" == "3.10" ]]; then
37
- conf_file="${setup}-3.10"
+if [ "$version" == "latest" ]; then
+ conf_file="${setup}-3.12"
+elif [[ "$version" == *.*.* ]]; then
38
+ conf_file="${setup}-${version%.*}"
39
else
- conf_file="${setup}"
40
+ conf_file="${setup}-${version}"
41
42
-docker run -d --rm \
43
+docker run -d \
44
--name arango \
45
-p 8528:8528 \
46
-p 8529:8529 \
0 commit comments