Skip to content

Commit

Permalink
Modified Installation .Md
Browse files Browse the repository at this point in the history
  • Loading branch information
IamLRBA committed Jan 26, 2025
1 parent b3e2ed2 commit 765c039
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,23 @@ Follow these steps for setting up a software development environment.
docker-compose -f docker-compose.dev.yaml up --build
```

2. Using Ubuntu: 1. Running synchronously. Using CTRL-C will stop it.
`bash
2. Using Ubuntu:
1. Running synchronously.
Using CTRL-C will stop it.

```bash
sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up --build
` 2. Running asynchronously in a subshell. You will have to use the `docker-compose down` command below to stop it.
`bash
sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up --build &
```

2. Running asynchronously in subshell.
You will have to use the

`docker-compose down`
command below to stop it.

```bash
sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up --build &
```
`
This command starts the development environment, where you can make changes to the code, and the server will automatically restart.
Expand Down

0 comments on commit 765c039

Please sign in to comment.