feat: Add Redis service to compose file
This commit is contained in:
parent
5611a6dc81
commit
30cf34268b
1
app/services/RedisService.ts
Normal file
1
app/services/RedisService.ts
Normal file
@ -0,0 +1 @@
|
||||
// TODO
|
||||
15
compose.yml
15
compose.yml
@ -12,3 +12,18 @@ services:
|
||||
volumes:
|
||||
- ./app:/app
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- memento-data
|
||||
|
||||
memento-dev-redis:
|
||||
container_name: memento-dev-redis
|
||||
image: redis:alpine
|
||||
volumes:
|
||||
- redis-data:/data
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- memento-data
|
||||
|
||||
networks:
|
||||
memento-data:
|
||||
driver: bridge
|
||||
|
||||
Loading…
Reference in New Issue
Block a user