diff options
| author | Fuwn <[email protected]> | 2021-06-19 19:53:18 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-19 19:53:18 -0700 |
| commit | 9bee1b0d25423aee7ad42ee387e90c26ae5b3316 (patch) | |
| tree | 4b402b317a55f2e5c61a628910046cf1b909d480 | |
| parent | docs(deploying): create deploying information (diff) | |
| download | site-9bee1b0d25423aee7ad42ee387e90c26ae5b3316.tar.xz site-9bee1b0d25423aee7ad42ee387e90c26ae5b3316.zip | |
docs(deploying): add background flag to docker cmd
| -rw-r--r-- | docs/whirl/deploying_setup.md | 3 |
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 |