diff options
author | Frederick Muriuki Muriithi | 2024-11-07 08:23:36 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-11-12 14:04:27 -0600 |
commit | a5245187f11ac4909106837cd811096f4b068422 (patch) | |
tree | 646ba411f7d701781fa9b9589266313edea07851 | |
parent | 8e3a6aed7033cfad3cd7581829d826ddace875d8 (diff) | |
download | gn-machines-a5245187f11ac4909106837cd811096f4b068422.tar.gz |
Bind a host directory to container's /tmp
Bind a host directory to container's /tmp to provide more space for
the /tmp and prevent the container from running out of space.
-rwxr-xr-x | public-sparql-deploy.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public-sparql-deploy.sh b/public-sparql-deploy.sh index cccf237..97a1aa4 100755 --- a/public-sparql-deploy.sh +++ b/public-sparql-deploy.sh @@ -23,6 +23,7 @@ container_script=$(guix system container \ --network \ --verbosity=3 \ --share=/export2/guix-containers/public-sparql/var/lib/virtuoso=/var/lib/virtuoso \ + --share=/export2/guix-containers/public-sparql/tmp=/tmp \ public-sparql.scm) echo $container_script |