Skip to content

Commit 0a15d00

Browse files
Fix path in Docker command for typedb server
Update docker instructions to mount volume at `typedb-server-(...)` instead of `typedb-all-(...)`
1 parent fca5b06 commit 0a15d00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

home/modules/ROOT/partials/ce_docker.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ To create a new Docker container with TypeDB CE server:
2727
[source,bash]
2828
----
2929
docker volume create typedb-data
30-
docker create --name typedb -v typedb-data:/opt/typedb-all-linux-x86_64/server/data -p 1729:1729 -p 8000:8000 typedb/typedb:latest
30+
docker create --name typedb -v typedb-data:/opt/typedb-server-linux-x86_64/server/data -p 1729:1729 -p 8000:8000 typedb/typedb:latest
3131
----
3232
// end::run[]
3333
// tag::run-info[]
3434
Where `typedb` is the name of the container, and `typedb-data` is the name of the volume to persist data.
3535
`-p 1729:1729 -p 8000:8000` forward the ports 1729 and 8000 on the host machine to the container's ports 1729 and 8000 respectively.
3636
[NOTE]
3737
====
38-
You will have to use `-v typedb-data:/opt/typedb-all-linux-arm64/server/data` if you are running the arm64 image.
38+
You will have to use `-v typedb-data:/opt/typedb-server-linux-arm64/server/data` if you are running the arm64 image.
3939
====
4040
4141
// end::run-info[]
@@ -56,4 +56,4 @@ To stop a running Docker container:
5656
----
5757
docker stop typedb
5858
----
59-
// end::stop[]
59+
// end::stop[]

0 commit comments

Comments
 (0)