From 2fa3198993a2b5c20b78ec5aa3ec99e42e599d02 Mon Sep 17 00:00:00 2001 From: cguijt Date: Fri, 8 Dec 2023 13:19:11 +0100 Subject: [PATCH] Update 2.install-and-build.md individual ports The individual docker images use different internal ports than the AIO image. This commit changes the `docker run` port mapping to make this clear. --- .../5.self-host/1.community-edition/2.install-and-build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/1.documentation/5.self-host/1.community-edition/2.install-and-build.md b/content/1.documentation/5.self-host/1.community-edition/2.install-and-build.md index 9e6a7082..70aef827 100644 --- a/content/1.documentation/5.self-host/1.community-edition/2.install-and-build.md +++ b/content/1.documentation/5.self-host/1.community-edition/2.install-and-build.md @@ -142,9 +142,9 @@ docker pull hoppscotch/hoppscotch-admin After pulling the containers, start Hoppscotch by running all three services: ```bash -docker run -p 3000:3000 --env-file .env hoppscotch-frontend +docker run -p 3000:8080 --env-file .env hoppscotch-frontend docker run -p 3170:3170 --env-file .env hoppscotch-backend -docker run -p 3100:3100 --env-file .env hoppscotch-admin +docker run -p 3100:8080 --env-file .env hoppscotch-admin ``` ::alert{type="info"}