mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-03 00:19:03 +02:00
🧑💻 Improve developer experience (#1140)
This commit is contained in:
parent
34fa288069
commit
685f49b4c2
19 changed files with 181 additions and 138 deletions
20
docker-compose.dev.yml
Normal file
20
docker-compose.dev.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
services:
|
||||
rallly_db:
|
||||
image: postgres:14.2
|
||||
restart: always
|
||||
ports:
|
||||
- "5450:5432"
|
||||
volumes:
|
||||
- db-data:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=postgres
|
||||
- POSTGRES_DB=rallly
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
db-data:
|
||||
driver: local
|
Loading…
Add table
Add a link
Reference in a new issue