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 2c380d3 commit 8930b5eCopy full SHA for 8930b5e
fly.toml
@@ -26,10 +26,6 @@ kill_timeout = "5s"
26
soft_limit = 200
27
hard_limit = 450
28
29
-[[mounts]]
30
- destination = "/data"
31
- source = "redis"
32
-
33
[metrics]
34
port = 8080
35
path = "/metrics"
redis/start-redis-server.sh
@@ -1,3 +1,3 @@
1
sysctl vm.overcommit_memory=1
2
sysctl net.core.somaxconn=1024
3
-redis-server --requirepass $CACHE_REDIS_PASSWORD --dir /data/
+redis-server --requirepass $CACHE_REDIS_PASSWORD --dir $(mktemp -d)
0 commit comments