From 7855b10982832bbaaaf2c5738cd06ce717145be7 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Sat, 28 Mar 2026 18:13:52 -0400 Subject: [PATCH] Update compose.yaml to change volume paths for Versity S3 Gateway from named volumes to NFS mounts. This adjustment improves data persistence and accessibility by linking directly to the NFS directory structure. --- komodo/s3/versitygw/compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/komodo/s3/versitygw/compose.yaml b/komodo/s3/versitygw/compose.yaml index 8153e46..9460562 100644 --- a/komodo/s3/versitygw/compose.yaml +++ b/komodo/s3/versitygw/compose.yaml @@ -20,9 +20,9 @@ services: ports: - "${VERSITYGW_PORT:-10000}:10000" volumes: - - s3_data:/data/s3 - - iam:/data/iam - - versions:/data/versions + - /mnt/nfs/versity/s3:/data/s3 + - /mnt/nfs/versity/iam:/data/iam + - /mnt/nfs/versity/versions:/data/versions command: - "--port" - ":10000"