• 1 Post
  • 325 Comments
Joined 2 years ago
cake
Cake day: June 26th, 2023

help-circle



  • Unit tests? No matter where you run them, and normally this is done by CI in a prebuilt container image, so you don’t have to wait for “docker building”. Acceptance tests must be run in an environment as close to production as possible, but that’s definitely not a programmer’s job.







  • bizdelnick@lemmy.mltoLinux@lemmy.mlThe Terminal Question
    link
    fedilink
    arrow-up
    15
    arrow-down
    6
    ·
    16 days ago

    Are you serious? It’s just a window where text is printed. Use what your DE provides. Now I’m mostly on LXQt, so I use QTerminal. With tiling WMs I prefer urxvt because I don’t need builtin window splitting ans tabs. I can’t imagine what other features may I need.








  • Snapshotting in docker is as easy as docker commit. After that you can back it up with docker save. Then move to another host, but not without downtime.

    However normally you need to backup/move only volumes attached to containers. If that’s not the way how you like to organize your services, you likely don’t need docker.