Remix.run Logo
otabdeveloper4 2 days ago

Env vars are not secure. Anything that has root access can see all env vars of all applications via /proc.

(And modern Linux is unusable without root access, thanks to Docker and other fast-and-loose approaches.)

ErroneousBosh 2 days ago | parent [-]

How often do you log in as root, or use sudo to become root, when you're working with Docker containers?

Because I never do, unless I'm down in the depths of /var/lib/docker doing stuff I shouldn't.

otabdeveloper4 2 days ago | parent [-]

That just means you outsourced the `sudo` invocations to some other person. (Which is even worse.)

ErroneousBosh 2 days ago | parent [-]

No, it means I understand how Unix permissions work.

otabdeveloper4 a day ago | parent [-]

Glib response, but in reality you basically cannot do anything in a modern Linux system without root except read and write files in your home directory.