diff options
author | 2022-08-01 10:11:54 +0300 | |
---|---|---|
committer | 2022-08-01 10:11:54 +0300 | |
commit | 507676aece37d9d468cf3565915d9a146bdf2ad4 (patch) | |
tree | 60115eb9b41dcbc5c7178cac5718206e4ff7efdb /pydis_site/apps/content | |
parent | Guide linting applied (diff) |
Update pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
Co-authored-by: Vivek Ashokkumar <[email protected]>
Diffstat (limited to 'pydis_site/apps/content')
-rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md index 5fb55caf..e3d9dffd 100644 --- a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md +++ b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md @@ -114,7 +114,7 @@ $ docker build -t mybot . $ docker run -d --name mybot mybot:latest ``` -- `-d` flag tells Docker to run the container in detached mode, meaning it will run the container but will not give us +- `-d` flag tells Docker to run the container in detached mode, meaning it will run the container in the background of your terminal and not give us any output from it. If we don't provide it, the `run` will be giving us the output until the application exits. Discord bots aren't supposed to exit after certain time, so we do need this flag |