From 4d36c647f6ca5fc4e3213c571f690820db0521eb Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Tue, 2 Aug 2022 21:33:50 +0100 Subject: [PATCH] Update Docker install command --- DOCKER.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DOCKER.md b/DOCKER.md index 3a7aa6d8..81246b7b 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -147,7 +147,7 @@ iwr https://windows.surrealdb.com -useb | iex Docker can be used to manage and run SurrealDB database instances without the need to install any command-line tools. The SurrealDB docker container contains the full command-line tools for importing and exporting data from a running server, or for running a server itself. ```bash -docker run --rm -p 8000:8000 surrealdb/surrealdb:latest -vvv start +docker run --pull --rm -p 8000:8000 surrealdb/surrealdb:latest start ```

  Community

diff --git a/README.md b/README.md index b7faa6a2..8e9cd3d3 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ iwr https://windows.surrealdb.com -useb | iex Docker can be used to manage and run SurrealDB database instances without the need to install any command-line tools. The SurrealDB docker container contains the full command-line tools for importing and exporting data from a running server, or for running a server itself. ```bash -docker run --rm -p 8000:8000 surrealdb/surrealdb:latest -vvv start +docker run --pull --rm -p 8000:8000 surrealdb/surrealdb:latest start ```

  Community