amp

joined 1 year ago
[–] [email protected] 2 points 1 year ago (1 children)

mtls over nginx is the simplest way. but be aware that while it works great on desktop browsers, other reduced browsers (incl mobile) often don't support it.

[–] [email protected] -1 points 1 year ago

^ that is the way. works well on desktop browsers, but others like mobile often don't support mtls :(

[–] [email protected] 2 points 1 year ago

nope, but you're not the first one to ask, so maybe I'll write that one day.

[–] [email protected] 3 points 1 year ago (2 children)

two repos, one local one remote, alternating between them manually, using https://gitlab.com/stormking/resticguigx/ (I wrote that)

[–] [email protected] 1 points 1 year ago

"Freelancer 2" C_C

[–] [email protected] 0 points 1 year ago (1 children)

no that is valid yaml in any case, it's just a traeffic specific rule

[–] [email protected] 1 points 1 year ago (1 children)

I understand very well wanting to stay with the declarative nature of docker-compose. Someone should really build a better podman-compose. (or sooner or later I'll do it myself >_<)

[–] [email protected] 6 points 1 year ago (3 children)

I've switched over my own server last week, using ansible to generate the systemd files, and it worked great. It's just a dozen containers or so.

The only problems I had were with container interdependencies (network-mode=container:x). That didn't work so well with systemd, restarting and updating, but when I used a pod instead these problems all went away.

So I can't say I regret my experience so far. Now I'll be starting to use it at work too, where the user-namespace problem rears its head, but only because we have this very specific, very dumb big lamp dev container that houses apache, sql, redis, and more under one supervisord. That's why we have more than one user in it and frankly that's our own damn fault! When you make proper containers they shouldn't have more than one user in it and then userns=keep-id should work just fine.

So far, I fully recommend podman.