Skip to content

Commit

Permalink
switch from docker start to docker run
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Dec 13, 2023
1 parent 0edbabc commit 75a07ae
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@ jobs:
- setup_remote_docker:
docker_layer_caching: true

- run: docker create --name adb -p 8529:8529 -e ARANGO_ROOT_PASSWORD= arangodb/arangodb

- run: docker start adb
# - run: docker create --name adb -p 8529:8529 -e ARANGO_ROOT_PASSWORD= arangodb/arangodb

# - run: docker start adb

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

- run: docker ps -a

Expand Down

0 comments on commit 75a07ae

Please sign in to comment.