Skip to content

Commit

Permalink
Fixes PalisadoesFoundation#2268 - Ubuntu docker-compose Path
Browse files Browse the repository at this point in the history
  • Loading branch information
palisadoes committed Apr 29, 2024
1 parent 85c2684 commit 61debfc
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,19 +232,38 @@ The setup steps differ depending on whether you are working in a development or
Follow these steps for setting up a software development environment.

1. Building and Starting Development Containers:
```
docker-compose -f docker-compose.dev.yaml up --build
```
1. Using Windows:

```bash
docker-compose -f docker-compose.dev.yaml up --build
```
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 &
```
This command starts the development environment, where you can make changes to the code, and the server will automatically restart.

2. Accessing the Development Application: Open your web browser and navigate to:

```
http://localhost:4000.
http://localhost:4000
```
3. Stopping Development Containers:
```
docker-compose -f docker-compose.dev.yaml down
```
1. Using Windows:

```
docker-compose -f docker-compose.dev.yaml down
```
2. Using Ubuntu:

```
sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml down
```

### For Production

Expand Down

0 comments on commit 61debfc

Please sign in to comment.