Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Dec 14, 2023
1 parent f49ec32 commit 7bb4d6c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ jobs:

- run:
name: Set Up ArangoDB
command: |
chmod +x starter.sh
./starter.sh << parameters.arangodb_config >> << parameters.arangodb_license >> << parameters.arangodb_version >>
command: ./starter.sh << parameters.arangodb_config >> << parameters.arangodb_license >> << parameters.arangodb_version >>

# - restore_cache:
# key: pip-and-local-cache
Expand Down
12 changes: 9 additions & 3 deletions starter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,18 @@ fi

docker run -d --rm \
--name arango \
# -p 8528:8528 \
-p 8528:8528 \
-p 8529:8529 \
$extra_ports \
"arangodb/$image_name:$version"

# docker run -d --rm \
# --name arango \
# -p 8528:8528 \
# -p 8529:8529 \
# $extra_ports \
# -v "$(pwd)/tests/static/":/tests/static \
# -v /tmp:/tmp \
"arangodb/$image_name:$version"
# "arangodb/$image_name:$version"
# /bin/sh -c "arangodb --configuration=/tests/static/$conf_file.conf"

wget --quiet --waitretry=1 --tries=120 -O - http://localhost:8528/version | jq
Expand Down

0 comments on commit 7bb4d6c

Please sign in to comment.