Hacker News new | ask | show | jobs
by user61129028 1118 days ago
> This goes strongly against the spirit of self-hosting where you know what you're running and you see the steps and all the integrations that are needed, including any reliance on third-party services that may come back to bite you.

No it doesn't. Just read the Dockerfile, it's self documenting and contains all the build steps.

1 comments

Or to put it nicely.

If you don't want to run docker you can read the Dockerfile as it will contain all of the build step. Then you can enter everything yourself manually.

Most of the time a Dockerfile is a very useful living installation reference documentation, but it's not guaranteed. It's entirely possible to encounter a Dockerfile that's just copying in binaries built outside of Docker or was a published image capture of hand installed stuff that is just being referenced in downstream images.