From d04ef34fcfa3bfc93ffef82c388d9451645e830a Mon Sep 17 00:00:00 2001 From: Domenico Del Giudice <114437746+domedg@users.noreply.github.com> Date: Sat, 1 Mar 2025 15:41:55 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8188580..73ba7122 100644 --- a/README.md +++ b/README.md @@ -143,8 +143,16 @@ To get things up and running just follow these steps: ``` 14. You have to ensure on your own there are no port conflicts keeping T-Pot from starting up. Check the [list of required ports](#required-ports). -15. Start T-Pot: `docker compose up` or `docker compose up -d` if you want T-Pot to run in the background. -16. Stop T-Pot: `CTRL-C` (it if was running in the foreground) and / or `docker compose down -v` to stop T-Pot entirely. +15. To start T-Pot run: + ``` + docker compose up + ``` + or if you want T-Pot to run in the background: + ``` + docker compose up -d + ``` +16. During the first time running `docker-compose up`, you may encounter some issues. Check the [Installation Issues](#installation-issues) section to solve them. +17. To Stop T-Pot press: `CTRL-C` (it if was running in the foreground) and / or `docker compose down -v` to stop T-Pot entirely. ---