Skip to content

Commit

Permalink
chore: revert to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
monotykamary committed May 15, 2024
1 parent 1695374 commit 1fed360
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions from-docker.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#/bin/sh
podman run -e ARANGO_NO_AUTH=2 -p 8529:8529 -d --name arangodb arangodb:3.12.0
docker run -e ARANGO_NO_AUTH=2 -p 8529:8529 -d --name arangodb arangodb:3.12.0.2
sleep 20

curl http://localhost:8529/_db/_system/_api/aql-builtin | json_pp > data/aql-functions.json
node ./generateData.js

podman stop arangodb
podman container rm arangodb
podman volume prune -f
docker stop arangodb
docker container rm arangodb
docker volume prune -f

0 comments on commit 1fed360

Please sign in to comment.