diff --git a/README.md b/README.md
index 10684fefff448b8a9ef3449cf370c5ee8174dbbf..b142b9e8446c7e3f5b275883bd16224e27817680 100644
--- a/README.md
+++ b/README.md
@@ -9,19 +9,29 @@ In order to set up the stack locally, follow the following steps
 Copy the contents of `.env.sample` in `.env`
 
 ```bash
-cp .env.development.sample .env
+cp .env.sample .env
 ```
 
+Do that in the producer folder as well 
+
 Replace the placeholders with the desired values
 
-### 1.2 Install the NodeJS dependencies
+### 1.2 Install the NodeJS dependencies (optional)
 
 ```bash
 npm install
 ```
 
-### 1.3 Start the docker compose stack
+### 1.3 Producer container
+
+For the container to work, the following command needs to be run in the producer folder
+
+```bash
+find . -type f -print0 | xargs -0 dos2unix
+```
+
+### 1.4 Start the docker compose stack
 
 ```bash
-docker compose --profile up
+docker compose up
 ```