Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Nov 19, 2024
1 parent 6b0239e commit d6f08b1
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,27 @@ mkdir -p config/pgadmin
cp utils/pgadmin/servers.json config/pgadmin
```

5. Run the docker compose
6. Copy the override file

```bash
docker-compose up -d
cp docker-compose.override.yml.dev docker-compose.override.yml
```

## How to scale or run in development mode

> [!NOTE]
> The `docker-compose.override.yml.prod` file is used to scale the backend and frontend.
> The `docker-compose.override.yml.dev` file is used to run the docker compose in development mode.
> To apply the override file, copy it to `docker-compose.override.yml` and run the docker compose.
> The `docker-compose.override.yml.prod` file is used to scale the backend and frontend.
> Review the ports and other settings in the `docker-compose.override.yml` file.
7. Run the docker compose

```bash
docker-compose up -d
```

## Accessing the services

With the default configuration, you can access the services at the following ports:

- Postgres: http://localhost:3020
- Redis: http://localhost:3030
- pgAdmin: http://localhost:3041

0 comments on commit d6f08b1

Please sign in to comment.