Arc Forumnew | comments | leaders | submitlogin
4 points by fauria 2694 days ago | link | parent

I'm currently working on it. It's not being that easy though: https://github.com/arclanguage/anarki/issues/59


5 points by akkartik 2689 days ago | link

I just want to point out a conversation I had with fauria on GitHub, in case others here have ideas. Currently the HN code doesn't support keeping the HN data (.../anarki/www) on a separate partition from the code (.../anarki) as Docker would like to do to maintain stateless containers. This is because any file creation which performs a create-then-rename first creates the temporary file in .../anarki/tmp. Renames then fail if .../anarki/www is in a different volume.

I'm not sure what the cleanest fix is here.

https://github.com/arclanguage/anarki/issues/59#issuecomment...

-----