From ba3ce30fa2b0c61a484daa5e96dee18047a5a600 Mon Sep 17 00:00:00 2001 From: Domenico Del Giudice <114437746+domedg@users.noreply.github.com> Date: Sat, 1 Mar 2025 14:15:00 +0100 Subject: [PATCH] Update README.md --- README.md | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 37e7b180..de2fc027 100644 --- a/README.md +++ b/README.md @@ -104,15 +104,30 @@ To get things up and running just follow these steps: ``` git clone https://github.com/domedg/tpotce_MacOS/ ``` -4. Go to : `cd tpotce_MacOS/` -5. Copy `cp compose/mac_win.yml ./docker-compose.yml` -6. Check if the script "genuser.sh" is executable, if is not run `chmod 777 genuser.sh` -7. Create a `WEB_USER` by running `./genuser.sh` +4. Go to repo folder: + ``` + cd tpotce_MacOS/ + ``` +6. Copy the docker configuration file + ``` + cp compose/mac_win.yml ./docker-compose.yml + ``` +8. Check if the script `genuser.sh` is executable, if is not run: + ``` + chmod 777 genuser.sh + ``` +10. Create a `WEB_USER` by running `./genuser.sh` + 1. **Possible Issue** + Sometimes + ```sh + chmod +x genuser.sh + ``` + Then, run the script again. -8. Adjust the `.env` file by changing `TPOT_OSTYPE=linux` to either `mac` or `win`: -9. 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). -10. Start T-Pot: `docker compose up` or `docker compose up -d` if you want T-Pot to run in the background. -11. Stop T-Pot: `CTRL-C` (it if was running in the foreground) and / or `docker compose down -v` to stop T-Pot entirely. +12. Adjust the `.env` file by changing `TPOT_OSTYPE=linux` to either `mac` or `win`: +13. 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). +14. Start T-Pot: `docker compose up` or `docker compose up -d` if you want T-Pot to run in the background. +15. Stop T-Pot: `CTRL-C` (it if was running in the foreground) and / or `docker compose down -v` to stop T-Pot entirely. ---