aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-19 19:53:18 -0700
committerGitHub <[email protected]>2021-06-19 19:53:18 -0700
commit9bee1b0d25423aee7ad42ee387e90c26ae5b3316 (patch)
tree4b402b317a55f2e5c61a628910046cf1b909d480
parentdocs(deploying): create deploying information (diff)
downloadsite-9bee1b0d25423aee7ad42ee387e90c26ae5b3316.tar.xz
site-9bee1b0d25423aee7ad42ee387e90c26ae5b3316.zip
docs(deploying): add background flag to docker cmd
-rw-r--r--docs/whirl/deploying_setup.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/whirl/deploying_setup.md b/docs/whirl/deploying_setup.md
index 5ad65bc..5cf9b03 100644
--- a/docs/whirl/deploying_setup.md
+++ b/docs/whirl/deploying_setup.md
@@ -15,6 +15,7 @@ place!
```shell
$ docker run \
+> -d \
> -p 8080:80 \
> -p 6650:6650 \
> -p 5673:5673 \
@@ -25,7 +26,7 @@ $ docker run \
#### Copyable
```shell
-docker run -p 8080:80 -p 6650:6650 -p 5673:5673 -v /var/lib/whirl:/.whirl whirlsplash/whirl
+docker run -d -p 8080:80 -p 6650:6650 -p 5673:5673 -v /var/lib/whirl:/.whirl whirlsplash/whirl
```
### Notes