Skip Navigation
Jump
What is the closest to Google Keep but self hosted right ?
  • I recommend HedgeDoc it is a web app only but works on mobile and desktop has grat Markdown support with images you can share certain documents even colaborate on one at the same thime and it is instantly "saved" so even if you trow your phone away right after you type one character it still will be synced and it has tags and a search funtion.

    1
  • Jump
    How to prevent rogue docker containers from wreaking havoc?
  • So attempt to run every container with the least privilege:

    • seperate networks for each stack
    • only map needed folders
    • run the container as a non root user (some containers won't work so they need to be run as root user)
    • use a RP with authentication (if a app is valuable)
    • make differential backups to shrink size and increase the interval (and check if they work)
    • block internet access to containers that don't need them
    1