aboutsummaryrefslogtreecommitdiff
path: root/plugins/ObjectCacheServer/server/container/docker-compose.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-24 20:55:01 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-24 20:55:01 -0400
commita504435151efbe1d19404fa44859b15c629f6d5d (patch)
tree4eb1bd863074e64922e35ff730f354ac40528698 /plugins/ObjectCacheServer/server/container/docker-compose.yaml
parentc74440ff12daa03cc4b7792d0c3baad46a11a465 (diff)
chore: Updated compose and added some more logging
Diffstat (limited to 'plugins/ObjectCacheServer/server/container/docker-compose.yaml')
-rw-r--r--plugins/ObjectCacheServer/server/container/docker-compose.yaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/ObjectCacheServer/server/container/docker-compose.yaml b/plugins/ObjectCacheServer/server/container/docker-compose.yaml
index 647c8c2..5aa494e 100644
--- a/plugins/ObjectCacheServer/server/container/docker-compose.yaml
+++ b/plugins/ObjectCacheServer/server/container/docker-compose.yaml
@@ -10,6 +10,7 @@ services:
restart: unless-stopped
hostname: vncache-server
volumes:
+ - ./data/:/app/data:rw #optional writes log files to the host (may be required in the future)
- ./assets:/app/usr/assets:ro #optional if assets are required
- ./ssl:/app/ssl:ro #optional only if SSL is enabled (currently not a feature)
ports:
@@ -18,7 +19,7 @@ services:
#System memory consumption is calculated as follows:
# MAX_ENTIRES x CACHE_BUCKETS x CACHE_MAX_MESSAGE = max memory consumption
- MAX_CONCURRENT_CONNECTIONS: "1000" #max number of concurrent connections
+ MAX_CONCURRENT_CONNECTIONS: "1000" #max number of concurrent client connections
MAX_ENTRIES: "10000" #max number of cache entries per bucket
CACHE_BUCKETS: "100" #number of cache buckets for load balancing
CACHE_MAX_MESSAGE: "20480" #20KB
@@ -29,8 +30,8 @@ services:
ENABLE_CHECKSUMS: "true" #enables checksums for messages
#SECRETS (must be JWK formatted keys)
- CACHE_PRIV_KEY: "" #REQUIRED local private key used to identify and sign messages to clients and other nodes
- CLIENT_PUB_KEY: "" #REQUIRED used to verify client messages
+ CACHE_PRIV_KEY: '' #REQUIRED local private key used to identify and sign messages to clients and other nodes
+ CLIENT_PUB_KEY: '' #REQUIRED used to verify client messages
#HC vault
#HC_VAULT_ADDR: ""