aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Exenifix <[email protected]>2022-12-04 13:10:10 +0300
committerGravatar GitHub <[email protected]>2022-12-04 13:10:10 +0300
commitce18f5ac487af9a46e7417ba20560803f3e7afab (patch)
tree347d64324fe6143417c2c33f9a98d5a037edc07d
parentMerge branch 'main' into main (diff)
Update pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
Co-authored-by: Vivek Ashokkumar <[email protected]>
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md2
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 d77a91b6..09e180b3 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
@@ -153,7 +153,7 @@ services:
- `services` contains services to build and run. Read more about
services [here](https://docs.docker.com/compose/compose-file/#services-top-level-element)
- `main` is a service. We can call it whatever we would like to, not necessarily `main`
-- `build: .` is a path to search from Dockerfile, just like `docker build` command's dot
+- `build: .` is a path to search for Dockerfile, just like `docker build` command's dot
- `container_name: mybot` is a container name to use for a bot, just like `docker run --name mybot`
Update the project on VPS, remove the previous container with `docker rm -f mybot` and run this command