Update kopia password
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.password
|
||||||
@ -18,7 +18,7 @@
|
|||||||
"kopia_config:/app/config"
|
"kopia_config:/app/config"
|
||||||
"kopia_cache:/app/cache"
|
"kopia_cache:/app/cache"
|
||||||
"kopia_logs:/app/logs"
|
"kopia_logs:/app/logs"
|
||||||
"kopia_temp:/tmp/shared"
|
"kopia_temp:/tmp"
|
||||||
|
|
||||||
"/media/synology-syncthing:/repository"
|
"/media/synology-syncthing:/repository"
|
||||||
|
|
||||||
@ -29,8 +29,9 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
|
TZ = "Europe/Berlin";
|
||||||
USER = "christoph";
|
USER = "christoph";
|
||||||
KOPIA_PASSWORD = "kopia";
|
KOPIA_PASSWORD = (builtins.readFile ./kopia.password);
|
||||||
};
|
};
|
||||||
|
|
||||||
entrypoint = "/bin/kopia";
|
entrypoint = "/bin/kopia";
|
||||||
@ -46,6 +47,9 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
|
"--privileged"
|
||||||
|
"--device=/dev/fuse:/dev/fuse:rwm"
|
||||||
|
"--cap-add=SYS_ADMIN"
|
||||||
"--net=behind-nginx"
|
"--net=behind-nginx"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user