🧑‍💻 Improve developer experience (#1140)

This commit is contained in:
Luke Vella 2024-06-09 22:08:02 +01:00 committed by GitHub
parent 34fa288069
commit 685f49b4c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 181 additions and 138 deletions

20
docker-compose.dev.yml Normal file
View 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