1

Update kopia password

This commit is contained in:
2023-11-19 18:01:41 +01:00
parent f04fe3c980
commit 02dceb3e59
2 changed files with 7 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.password

View File

@ -18,7 +18,7 @@
"kopia_config:/app/config"
"kopia_cache:/app/cache"
"kopia_logs:/app/logs"
"kopia_temp:/tmp/shared"
"kopia_temp:/tmp"
"/media/synology-syncthing:/repository"
@ -29,8 +29,9 @@
];
environment = {
TZ = "Europe/Berlin";
USER = "christoph";
KOPIA_PASSWORD = "kopia";
KOPIA_PASSWORD = (builtins.readFile ./kopia.password);
};
entrypoint = "/bin/kopia";
@ -46,6 +47,9 @@
];
extraOptions = [
"--privileged"
"--device=/dev/fuse:/dev/fuse:rwm"
"--cap-add=SYS_ADMIN"
"--net=behind-nginx"
];
};