From 39a0ad22c667cd81b64fff305c4eb07320093894 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Mon, 18 Jul 2022 22:42:28 +0100 Subject: [PATCH] Update default Docker command --- DOCKER.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DOCKER.md b/DOCKER.md index 6d05cb2b..0400f134 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -147,7 +147,7 @@ iwr https://install.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 start +docker run --rm -p 8000:8000 surrealdb/surrealdb:latest -vvv start ```

  Community

diff --git a/README.md b/README.md index 29bd870a..02cbd472 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ iwr https://install.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 start +docker run --rm -p 8000:8000 surrealdb/surrealdb:latest -vvv start ```

  Community