Skip to content

Commit 218e850

Browse files
fix(docs): update Docker Compose commands for MongoDB, MySQL, and PostgreSQL examples
Signed-off-by: Swastik <swastikiscoding@gmail.com>
1 parent ce8d1c0 commit 218e850

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

versioned_docs/version-4.0.0/quickstart/php-slim-mongodb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ First, let's set up the environment and start recording. Keep an eye on the key
4949
docker network create keploy-network
5050

5151
# Start MongoDB database
52-
docker compose up mongodb -d
52+
docker compose up -d mongodb
5353

5454
# Build the application
5555
docker compose build app
@@ -164,7 +164,7 @@ docker network create keploy-network
164164
Now, let's breathe life into your MongoDB container. A simple spell should do the trick:
165165

166166
```bash
167-
docker compose up mongodb -d
167+
docker compose up -d mongodb
168168
```
169169

170170
#### Configure Environment

versioned_docs/version-4.0.0/quickstart/php-slim-mysql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
id: samples-php
3-
title: PHP Sample Application
3+
title: PHP Slim + MySQL Sample Application
44
sidebar_label: PHP - Slim + MySQL
5-
description: The following sample app showcases how to use PHP Slim framework and the Keploy Platform.
5+
description: The following sample app showcases how to use the PHP Slim framework with MySQL and the Keploy Platform.
66
tags:
77
- php
88
- quickstart
@@ -49,7 +49,7 @@ First, let's set up the environment and start recording. Keep an eye on the key
4949
docker network create keploy-network
5050

5151
# Start MySQL database
52-
docker compose up mysql -d
52+
docker compose up -d mysql
5353

5454
# Build the application
5555
docker compose build app
@@ -162,7 +162,7 @@ docker network create keploy-network
162162
Now, let's breathe life into your MySQL container. A simple spell should do the trick:
163163

164164
```bash
165-
docker compose up mysql -d
165+
docker compose up -d mysql
166166
```
167167

168168
#### Configure Environment

versioned_docs/version-4.0.0/quickstart/php-slim-postgres.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ First, let's set up the environment and start recording. Keep an eye on the key
4949
docker network create keploy-network
5050

5151
# Start PostgreSQL database
52-
docker compose up postgres -d
52+
docker compose up -d postgres
5353

5454
# Build the application
5555
docker compose build app
@@ -162,7 +162,7 @@ docker network create keploy-network
162162
Now, let's breathe life into your PostgreSQL container. A simple spell should do the trick:
163163

164164
```bash
165-
docker compose up postgres -d
165+
docker compose up -d postgres
166166
```
167167

168168
#### Configure Environment

0 commit comments

Comments
 (0)