Add bull and caching

This commit is contained in:
2023-11-20 15:25:07 -07:00
parent 5a54a9ca5b
commit 725cabefe6
7 changed files with 339 additions and 29 deletions

15
docker-compose.yaml Normal file
View File

@@ -0,0 +1,15 @@
version: '3'
services:
redis:
image: redis
networks:
- db_net
ports:
- 6379:6379
command: >
--requirepass ${REDIS_PASS}
env_file:
- .env
networks:
app_net:
db_net: