Merge branch 'persistentRedis' into 'main'
persistent redis See merge request v3/services/user!15
This commit is contained in:
commit
c81fbd22b6
|
@ -1,5 +1,6 @@
|
||||||
# custom
|
# custom
|
||||||
.postgresql
|
.postgresql
|
||||||
|
.redis_data
|
||||||
.env
|
.env
|
||||||
|
|
||||||
# compiled output
|
# compiled output
|
||||||
|
|
|
@ -26,6 +26,8 @@ services:
|
||||||
image: ${REDIS_IMAGE}
|
image: ${REDIS_IMAGE}
|
||||||
ports:
|
ports:
|
||||||
- 6501:6379
|
- 6501:6379
|
||||||
|
volumes:
|
||||||
|
- .redis_data:/data
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in New Issue