Skip to content

Commit

Permalink
Merge pull request #1373 from seokho-son/main
Browse files Browse the repository at this point in the history
Fix outdated docker api version for script
  • Loading branch information
seokho-son authored Oct 30, 2023
2 parents 865f214 + e14926a commit 2449eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions scripts/runContainer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ while true; do
echo ==========================================================
echo "[List of all version tags in hub.docker]"
echo -e "${LGREEN}"
curl -s https://registry.hub.docker.com/v1/repositories/cloudbaristaorg/$CONTAINER_NAME/tags | \
grep -oP '(?<="name": ")[^"]+' | sort -r
curl -s https://registry.hub.docker.com/v2/repositories/cloudbaristaorg/$CONTAINER_NAME/tags?page_size=1024 | jq '."results"[]["name"]' | tr -d \" | sort -V
echo -e "${NC}"
read -p "Please specify $CONTAINER_NAME_READ version you want (latest / $CONTAINER_VERSION / ...): " CONTAINER_VERSION
echo
Expand Down
2 changes: 1 addition & 1 deletion scripts/runMapUI.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

CONTAINER_NAME_READ="CB-MapUI"
CONTAINER_VERSION="0.6.5"
CONTAINER_VERSION="0.7.3"
CONTAINER_PORT="-p 1324:1324"
CONTAINER_DATA_PATH=""

Expand Down

0 comments on commit 2449eef

Please sign in to comment.