Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified Installation .Md #2907

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading