Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipndev authored Sep 21, 2024
1 parent 2a4a2da commit 1695118
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,25 @@ Update State
#### Docker Compose to run this directly
```
version: "4"
server-pg:
image: postgres:16.4
ports:
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- POSTGRES_DB=pg
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 5s
timeout: 5s
retries: 5
accorde:
image: sandipndev/accorde
ports:
- "9099:3000"
depends_on:
- server-pg
environment:
- PG_CON=postgresql://user:password@server-pg:5432/pg
services:
server-pg:
image: postgres:16.4
ports:
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- POSTGRES_DB=pg
healthcheck:
test: ["CMD-SHELL", "pg_isready"]
interval: 5s
timeout: 5s
retries: 5
accorde:
image: sandipndev/accorde
ports:
- "9099:3000"
depends_on:
- server-pg
environment:
- PG_CON=postgresql://user:password@server-pg:5432/pg
```

0 comments on commit 1695118

Please sign in to comment.