Arc Forumnew | comments | leaders | submitlogin
4 points by malisper 2724 days ago | link | parent

I haven't seen anything like that, but it should be pretty easy for someone to create such an image.


4 points by fauria 2715 days ago | link

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

-----

5 points by akkartik 2710 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...

-----