[docker] add redis 8.0.1 (#1)

This commit is contained in:
gouzi 2025-05-28 16:27:53 +00:00
parent c06ff17d3e
commit f824b600f3
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,8 @@
services:
redis:
image: redis:8.0.1
container_name: redis_server
ports:
- "6379:6379"
# networks:
# - backend

5
justfile Normal file
View File

@ -0,0 +1,5 @@
run:
uvicorn quantum_stack_interview.asgi:application --reload
start_redis:
docker compose -f docker/docker-compose.dev.yaml up -d redis