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 d8d9ede commit 36d43a2Copy full SHA for 36d43a2
stack/README.md
@@ -0,0 +1,18 @@
1
+### basic commands
2
+
3
+```
4
+docker compose up -d arangodb
5
6
+#cd to dump directory
7
+docker run --network stack_arango_net --rm -it --entrypoint /bin/sh -v $PWD:/dump arangodb:3.12
8
9
+#inside the container
10
11
+arangorestore \
12
+ --server.endpoint tcp://arangodb:8529 \
13
+ --server.username root \
14
+ --server.password greenapple71 \
15
+ --server.database healthcare \
16
+ --input-directory "dump"
17
18
0 commit comments