aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/cryptpad/build/README.md
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-08-24 15:42:47 +0200
committerAlex Auvolat <alex@adnab.me>2022-08-24 15:42:47 +0200
commit2e8923b383eb06c53261eee8e5c442b857fb67e4 (patch)
tree0ad148f75f7b54dfed2dbac8f43f6df9badc502a /cluster/prod/app/cryptpad/build/README.md
parent9848f3090f77363a2fda0f9fa673ebcf1fb8228c (diff)
downloadnixcfg-2e8923b383eb06c53261eee8e5c442b857fb67e4.tar.gz
nixcfg-2e8923b383eb06c53261eee8e5c442b857fb67e4.zip
Move app files into cluster subdirectories; add prod garage
Diffstat (limited to 'cluster/prod/app/cryptpad/build/README.md')
-rw-r--r--cluster/prod/app/cryptpad/build/README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/cluster/prod/app/cryptpad/build/README.md b/cluster/prod/app/cryptpad/build/README.md
new file mode 100644
index 0000000..079d836
--- /dev/null
+++ b/cluster/prod/app/cryptpad/build/README.md
@@ -0,0 +1,29 @@
+## Build
+
+Cryptpad being not NixOS native, an upgrade must be done in 4 steps:
+ 1. Bump the cryptpad version in `common.nix`
+ 2. Rebuild the Nix lock files for the dependencies
+ 3. Build the package for Nix
+ 4. Create a container from the Nix package
+
+To bump the nix version, set the desired tag in `common.nix` in the `cryptpadVersion` entry.
+Set the corresponding commit in the `cryptadCommit` field, its goal would be to detect unwanted update of the tag.
+
+To rebuild the lock files (they are stored in the `nix.lock` folder):
+
+```
+nix-shell --run "update_lock"
+```
+
+To build cryptpad:
+
+```
+nix-build
+```
+
+Create the container:
+
+```
+docker load < $(nix-build docker.nix)
+docker push superboum/cryptpad:???
+```