Dropped extra volumes unique to me to create better new user install paths

This commit is contained in:
cody conder
2025-11-08 00:47:35 -06:00
parent 801174585b
commit edbf243965

View File

@@ -40,60 +40,32 @@
], ],
"volumes": [ "volumes": [
{ {
"hostPath": "/home/${USER}/kopia/certs", "hostPath": "${APP_DATA_DIR}/certs",
"containerPath": "/app/certs", "containerPath": "/app/certs",
"readOnly": false, "readOnly": false,
"shared": false, "shared": false,
"private": false "private": false
}, },
{ {
"hostPath": "/home/${USER}/kopia/config", "hostPath": "${APP_DATA_DIR}/config",
"containerPath": "/app/config", "containerPath": "/app/config",
"readOnly": false, "readOnly": false,
"shared": false, "shared": false,
"private": false "private": false
}, },
{ {
"hostPath": "/home/${USER}/kopia/cache", "hostPath": "${APP_DATA_DIR}/cache",
"containerPath": "/app/cache", "containerPath": "/app/cache",
"readOnly": false, "readOnly": false,
"shared": false, "shared": false,
"private": false "private": false
}, },
{ {
"hostPath": "/home/${USER}/kopia/logs", "hostPath": "${APP_DATA_DIR}/logs",
"containerPath": "/app/logs", "containerPath": "/app/logs",
"readOnly": false, "readOnly": false,
"shared": false, "shared": false,
"private": false "private": false
},
{
"hostPath": "/mnt/Backups/Kopia",
"containerPath": "/repository",
"readOnly": false,
"shared": false,
"private": false
},
{
"hostPath": "/home/${USER}",
"containerPath": "/data/${USER}",
"readOnly": true,
"shared": false,
"private": false
},
{
"hostPath": "/mnt/ext",
"containerPath": "/data/ext",
"readOnly": true,
"shared": false,
"private": false
},
{
"hostPath": "/media/Cinema",
"containerPath": "/data/Cinema",
"readOnly": true,
"shared": false,
"private": false
} }
], ],
"hostname": "kopia-server", "hostname": "kopia-server",