Update docker-compose.mdx (#13597)

Changes on the self-hosting tutorial to match env variables of the
actual docker-compose file and .env.example
This commit is contained in:
alexcohfr
2025-08-04 19:07:44 +02:00
committed by GitHub
parent 3c485ccb37
commit b10e7ef642
@@ -65,10 +65,10 @@ Follow these steps for a manual setup.
4. **Set the Postgres Password**
Update the `PGPASSWORD_SUPERUSER` value in the .env file with a strong password without special characters.
Update the `PG_DATABASE_PASSWORD` value in the .env file with a strong password without special characters.
```ini
PGPASSWORD_SUPERUSER=my_strong_password
PG_DATABASE_PASSWORD=my_strong_password
```
### Step 2: Obtain the Docker Compose File
@@ -88,7 +88,12 @@ docker compose up -d
### Step 4: Access the Application
Open your browser and navigate to [http://localhost:3000](http://localhost:3000).
If you host twentyCRM on your own computer, open your browser and navigate to [http://localhost:3000](http://localhost:3000).
If you host it on a server, check that the server is running and that everything is ok with
```bash
curl http://localhost:3000
```
## Configuration