We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129bd9b commit 5c4e7c1Copy full SHA for 5c4e7c1
docker-compose.yml
@@ -12,6 +12,9 @@ services:
12
13
vulnerablecode_redis:
14
image: redis
15
+ # Enable redis data persistence using the "Append Only File" with the
16
+ # default policy of fsync every second. See https://redis.io/topics/persistence
17
+ command: redis-server --appendonly yes
18
volumes:
19
- vulnerablecode_redis_data:/data
20
restart: always
docker.env
@@ -5,4 +5,4 @@ POSTGRES_PASSWORD=vulnerablecode
5
VULNERABLECODE_DB_HOST=db
6
VULNERABLECODE_STATIC_ROOT=/var/vulnerablecode/static/
7
8
-VULNERABLECODE_REDIS_HOST=redis
+VULNERABLECODE_REDIS_HOST=vulnerablecode_redis
0 commit comments