diff --git a/apps/kopia/docker-compose.json b/apps/kopia/docker-compose.json index 9f7b0eb..fedc008 100644 --- a/apps/kopia/docker-compose.json +++ b/apps/kopia/docker-compose.json @@ -40,60 +40,32 @@ ], "volumes": [ { - "hostPath": "/home/${USER}/kopia/certs", + "hostPath": "${APP_DATA_DIR}/certs", "containerPath": "/app/certs", "readOnly": false, "shared": false, "private": false }, { - "hostPath": "/home/${USER}/kopia/config", + "hostPath": "${APP_DATA_DIR}/config", "containerPath": "/app/config", "readOnly": false, "shared": false, "private": false }, { - "hostPath": "/home/${USER}/kopia/cache", + "hostPath": "${APP_DATA_DIR}/cache", "containerPath": "/app/cache", "readOnly": false, "shared": false, "private": false }, { - "hostPath": "/home/${USER}/kopia/logs", + "hostPath": "${APP_DATA_DIR}/logs", "containerPath": "/app/logs", "readOnly": false, "shared": 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",