Getting error when creating containers #85
-
I'm getting this when running the program on Debian, any ideas? Running as root btw. With |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Nevermind, fixed, |
Beta Was this translation helpful? Give feedback.
-
Is |
Beta Was this translation helpful? Give feedback.
No, the container is running with a readonly system root with
/w
and/tmp
mounted withtmpfs
, which are being cleared after every execution. At the same time, symbolic from host to container is considered as a dangerous operation as they may able to alter its content or escape from the isolated mount namespace. You may use thecopyIn
argument to copy file content into thetmpfs
within the container and it is rather a lightweight operation thanks to the file page cache.