File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
home/modules/ROOT/partials Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ To create a new Docker container with TypeDB CE server:
2727[source,bash]
2828----
2929docker 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[]
3434Where `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----
5757docker stop typedb
5858----
59- // end::stop[]
59+ // end::stop[]
You can’t perform that action at this time.
0 commit comments