diff --git a/packages/twenty-website/src/content/developers/self-hosting/docker-compose.mdx b/packages/twenty-website/src/content/developers/self-hosting/docker-compose.mdx index 3a0761b3642..ed16d5228de 100644 --- a/packages/twenty-website/src/content/developers/self-hosting/docker-compose.mdx +++ b/packages/twenty-website/src/content/developers/self-hosting/docker-compose.mdx @@ -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