Add Docker Compose setup with PostgreSQL and Redis services

This commit is contained in:
Mika Bomm 2025-03-27 12:06:00 +01:00
parent f05eaad166
commit db982731e7
3 changed files with 33 additions and 3 deletions

3
.env.example Normal file
View file

@ -0,0 +1,3 @@
DB_NAME=
DB_USER=
DB_PASSWORD=

6
.gitignore vendored
View file

@ -33,8 +33,8 @@ test/
node_modules
# Added by cargo
/target
# .env
.env

27
dev-compose.yml Normal file
View file

@ -0,0 +1,27 @@
services:
db:
image: postgres:latest
container_name: database
restart: unless-stopped
env_file:
- .env
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "5432:5432"
environment:
POSTGRES_DB: ${DB_NAME}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
redis:
image: redis:latest
restart: unless-stopped
ports:
- '6379:6379'
volumes:
- redis:/data
volumes:
postgres_data:
redis: