Skip to content

Commit

Permalink
Improve Docker start instructions in README (surrealdb#49)
Browse files Browse the repository at this point in the history
* Update README.md

Added exception handling notice starting docker image.

* Update README.md

wording

* Update README.md

Changed initial command and added section to update docker image on demand.
  • Loading branch information
iDschepe authored Aug 23, 2022
1 parent e69846a commit 201406b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,13 @@ 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 --pull --rm -p 8000:8000 surrealdb/surrealdb:latest start
docker run --rm -p 8000:8000 surrealdb/surrealdb:latest start
```

Update the image to the latest version:

```bash
docker pull surrealdb/surrealdb
```

<h2><img height="20" src="/img/gettingstarted.svg">&nbsp;&nbsp;Getting started</h2>
Expand Down

0 comments on commit 201406b

Please sign in to comment.