Skip to content

Commit

Permalink
chore: fix incomplete docker run commands
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPandir committed Oct 14, 2024
1 parent 327ad84 commit 16403bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ dudes logs -f

To run the project in dev mode in docker compose run:
```shell
docker compose -f compose.dev.app.yaml run -d
docker compose -f compose.dev.app.yaml up -d
```

## Run the database in docker

```shell
docker compose -f compose.dev.yaml up -d
docker compose -f compose.dev.yaml run -d postgres
```

> [!WARNING]
> By default, PostgreSQL runs on port `5432`. Before starting, ensure this port is not already in use on your system.
To change the PostgreSQL port, use the following command structure:
```shell
docker compose -f compose.dev.yaml run -d -p <port>:5432
docker compose -f compose.dev.yaml run -d -p <port>:5432 postgres
```

# Run locally
Expand Down

0 comments on commit 16403bb

Please sign in to comment.