summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--issues/gn-auth/registration.gmi8
1 files changed, 4 insertions, 4 deletions
diff --git a/issues/gn-auth/registration.gmi b/issues/gn-auth/registration.gmi
index 57438ac..5a0f03d 100644
--- a/issues/gn-auth/registration.gmi
+++ b/issues/gn-auth/registration.gmi
@@ -53,20 +53,20 @@ The cd container is built with the following options:
 
 ```
 container_script=$(guix system container --network \
-			…
+			︙
                         --share=/export/data/genenetwork-xapian \
                         --share=/export/data/genenetwork-sqlite \
-			…
+			︙
 ```
 
 meanwhile the test1 container is built with:
 
 ```
 container_script=$(guix system container \
-			…
+			︙
                         --expose=/export/data/genenetwork-xapian \
                         --share=/export/data/genenetwork-sqlite \
-			…
+			︙
 ```
 
 `--share` option allows read-write access within the container, while `--expose` just allows read access. From the snippets above, we see that the "genenetwork-sqlite" folder should (ideally) be writable from both systems.