Merge pull request #3058 from yuracoff18/doccumentation-fix-and-problem-solving-contributing

Fix the location from the docker images installation and addition of …
This commit is contained in:
Alexander Holliday
2025-11-12 09:21:37 -08:00
committed by GitHub

View File

@@ -66,7 +66,7 @@ cd Checkmate
Navigate to the Docker dev directory:
```bash
cd server/docker/dev
cd docker/dev
```
Build the Docker images:
@@ -78,13 +78,13 @@ Build the Docker images:
Run MongoDB container:
```bash
docker run -d -p 27017:27017 -v $(pwd)/mongo/data:/data/db --name uptime_database_mongo uptime_database_mongo
docker run -d -p 27017:27017 -v uptime_mongo_data:/data/db --name uptime_database_mongo mongo:6.0
```
Navigate back to the root directory:
```bash
cd ../../..
cd ../..
```
#### Step 3: Set Up the Backend (Server)
@@ -161,7 +161,7 @@ Start the frontend:
npm run dev
```
The client will run at `http://localhost:5173`.
The client will run at `http://localhost:5173`.
#### Step 5: Access the Application