diff options
| author | Frederick Muriuki Muriithi | 2025-10-07 11:40:22 -0500 |
|---|---|---|
| committer | Pjotr Prins | 2026-01-05 11:12:10 +0100 |
| commit | 4e9becb487272e63515bc6de92815aeb5bebe1f2 (patch) | |
| tree | cd6fa1762350f1e216a8c3ba78bf1fd6eb8f98f0 | |
| parent | b6212c525316c431f60e78db73e1a9320e2bb7f6 (diff) | |
| download | gn-gemtext-4e9becb487272e63515bc6de92815aeb5bebe1f2.tar.gz | |
List out container filesystem bindings.
| -rw-r--r-- | topics/deploy/setting-up-or-migrating-production-across-machines.gmi | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/topics/deploy/setting-up-or-migrating-production-across-machines.gmi b/topics/deploy/setting-up-or-migrating-production-across-machines.gmi index 3af05e7..4181f8f 100644 --- a/topics/deploy/setting-up-or-migrating-production-across-machines.gmi +++ b/topics/deploy/setting-up-or-migrating-production-across-machines.gmi @@ -45,6 +45,90 @@ Steps (flesh out better): * TODO: List the necessary directories and describe what purpose each serves. This will be from the perspective of the container — actual paths on the host system are left to the builders choice, and can vary wildly. * TODO: Prefer explicit binding rather than implicit — makes the shell scripts longer, but no assumptions have to be made, everything is explicitly spelled out. +The container(s) need access to various files and directories from the host system in order to work correctly. + +Filesystem bindings could be linked to wildly different paths on different physical host machines, therefore, we shall examine the bindings from the point of view of the paths within the container, rather than forcing a particular file system layout on the host systems themselves. + +### File System Bindings + +#### /var/genenetwork + +This binding must be READ/WRITE within the container. + +The purpose is to hold varying files that are specific to the genenetwork system(s). Examples of the files are: + +* "gn-meta" and "synteny" files for GN3 +* genotype files +* session files for various systems (GN2, gn-uploader, etc.) + +#### /var/lib/acme + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/redis + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/virtuoso + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/log + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /etc/genenetwork + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/xapian + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/genenetwork/sqlite/gn-auth + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/genenetwork/sqlite/genenetwork3 + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /run/mysqld + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/gn-docs.git + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /opt/gn/tmp + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /export/data/virtuoso/ + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /export/data/gn-docs + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/genenetwork/sessions + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/genenetwork/uploader + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/genenetwork/sqlite/gn-uploader + +* **TODO**: Describe this: Writable? What is this binding for? + +#### /var/lib/genenetwork/gn-guile + +* **TODO**: Describe this: Writable? What is this binding for? + ## Redis We currently (2025-06-11) use Redis for: |
