diff options
author | Camil Staps | 2016-11-01 22:41:54 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-01 22:41:54 +0100 |
commit | f4def95ebef8c9e8af5654a19ad2434c5212cb3e (patch) | |
tree | c2fc4486f56cf4ab34d0b6a6bd4cef19063aa764 /README.md | |
parent | Resolve #2: enable/disable showing types (diff) |
Note about tmpfs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -26,10 +26,12 @@ If you want history, add `-v ~/.iclean_history:/home/.iclean_history` and `touch You can add imports by creating a template in `~/.iclean_template`, then adding it to the container with `-v ~/.iclean_template:/home/.iclean_template`. +If you care about hard disk wear, add `--tmpfs /tmp:exec,size=1024k` to have iClean build on a ramdisk. + Make all this an alias: ``` -alias iclean="docker run --rm -it -v ~/.iclean_history:/home/.iclean_history -v ~/.iclean_template:/home/.iclean_template camilstaps/iclean" +alias iclean="docker run --rm -it --tmpfs /tmp:exec,size=1024k -v ~/.iclean_history:/home/.iclean_history -v ~/.iclean_template:/home/.iclean_template camilstaps/iclean" ``` ## Without Docker |