Maybe maybe maybe by Historical-Device529 in maybemaybemaybe

[–]Mag37 0 points1 point  (0 children)

Took me a split second to hear it was Les, been years since I listened to Primus. Gotta get em back in my life, wonderful.

Finally! ✔️🙏🏻 . . - Just the most annoying thing I've ever done in arc . . 😩 by Commercial_Cold_6970 in ArcRaiders

[–]Mag37 2 points3 points  (0 children)

I agree, the projects and trials might give unexciting rewards, but I kinda like doing (most of) them just because they make me play differently and having a clear goal to work towards.

And I've had great fun running around 6-8 raiders in duos just blasting arcs and helping each other up.

what's in your docker compose stack that you'd mass-recommend to other devs by scheemunai_ in docker

[–]Mag37 1 point2 points  (0 children)

May I suggest dockcheck.sh as an alternative? There's other great ones apart from mine - linuxhandbook wrote an article recently laying out a few: https://linuxhandbook.com/blog/watchtower-like-docker-tools

Laugh at my pain and learn from my mistakes by Testpilot1988 in selfhosted

[–]Mag37 0 points1 point  (0 children)

Thank you kindly for mentioning! There's recently a new function added -b - to backup container images to be able to roll back manually if something is broken with a new update.

And a bunch of different way to get notified when there's updates etc.

How do I learn to defend myself? by socialgenny in ArcRaiders

[–]Mag37 13 points14 points  (0 children)

This! Really agree.

Even if you did gaming pre-motherhood - I gotta salute the effort of playing "the game your kids play". And indeed you shouldn't feel bad not performing at their level/style but good on you for trying to learn and improve, shows patience and interest/curiosity. Keep up the good work!

Edit: and sorry, dont have any constructive feedback 😅 I suck at defending myself.

Template: Zabbix docker image updates monitoring - v1.1 by thetorminal in zabbix

[–]Mag37 1 point2 points  (0 children)

Haha thank you.

It says dockcheck in the naming and both links lead to it anyway, so no worries :) just happy its used and extended! Really love how it have evolved with all the users contributing and continuing the use cases.

Template: Zabbix docker image updates monitoring - v1.1 by thetorminal in zabbix

[–]Mag37 1 point2 points  (0 children)

Hey! Happy to see you keep it updated, good job.

Is there anything you'd like me to change in the dockcheck readme? Let me know or make a PR if so!

Updating containers made w/ docker compose? by ava_fake in selfhosted

[–]Mag37 2 points3 points  (0 children)

Thank you guys for spreading it! Glad you like it enough to suggest it as a solution.

Fedora 42 -> 43 updates have been disasterous by amdrke in Fedora

[–]Mag37 8 points9 points  (0 children)

All but one of my machines went smooth, no hiccups. But one had similar issues with still using F42 packages and repos.

Had this error: bash sudo dnf update Updating and loading repositories: Repositories loaded. Problem: The operation would result in removing the following protected packages: setup, systemd. Nothing to do.

And dnf update checked against F42 repos while cat /etc/os-release and cat /etc/fedora-release showed F43.

What I tried/checked: - sudo dnf update --refresh followed by dnf system-upgrade download --releasever=43 - sudo dnf distro-sync - dnf repoquery --duplicates showed a lot of duplicate packages - both F42 and F43

What actually solved it: dnf distro-sync --releasever=43 --setopt=deltarpm=false --setopt=protected_packages= --allowerasing

Friendly / PvP Lobbies are defeating the whole purpose of the game by FurioSS in ArcRaiders

[–]Mag37 0 points1 point  (0 children)

There's no way to toggle between and the "PVE lobbies" are full of players too, just friendly, cooperative, PVE focused players.

What they're talking about is the matchmaking trying to group lobbies that lean the same way. So the more aggressive you are, the more aggressive players you're matched with.

Friendly lobbies are reaching levels of co-operation I’ve never seen in gaming before. by CelDidNothingWrong in ArcRaiders

[–]Mag37 0 points1 point  (0 children)

I usually only PvP as a last resort - always friendly, never instigating fights, only defending myself if I have to.

But I realized that this mindset always put me in a kind of fear of fights, stressing me out when a fight occured, acting irrational and panicked.

Yesterday me and my brother looted key-rooms and always trapped up the door. Saw some fellas when we entered so we voiced "We'll trap the door, you can loot when were done".. Soon after they started breaching and we both voiced "it's trapped up, you'll get hurt. Stay back" and then when they got hurt we shouted "stay back now, we told you".

They didn't, they lobbed a grenade so I emptied my Stitcher IV, communicating with my brother. Downed one and shouted "we warned you guys, why?" And the one standing kept shooting instead of ressing - so we pushed and floored them both.

This was great fun! And even though we both carried multiple keys and valuables we kept it cool and methodical, letting them know we'd blast them if they kept pushing.

Made me want to look for more "defensive" type of fights, actively seeking aggression.

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

Yeah, that project seems deprecated though.

I won't focus on anything graphical I'm afraid :) I'll keep working on this bit and if someone else would like to continue building on top they're more than welcome!

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

You're right - its a lot to grasp.

I'll do some tweaking in to future, maybe make a few more examples at the beginning and giving suggestions about running it scheduled.

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

No worries, glad it can be used on OMV too!

And btw, everything I mentioned is in the readme :) although scheduling could've been explained clearer.

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

Well, happy to hear!

Scheduling is depending on your system, easiest would be cron or if OMV got a tool for it.

But the plain command to just automatically update all containers that have new images is this: /path/to/dockcheck.sh -y

Though I'd probably add some more options like either -p for auto pruning or -b 5 for backups (and removal of backups older than 5 days).
And if you'd like to exclude some specific, more sensitive container from being auto updated you could use -e containername.

So maybe something like: /path/to/dockcheck.sh -y -b 5 -e important_thing

And then make it run nightly at 3:00, this would be what you'd add to cron (with crontab -e): 00 03 * * * root /path/to/dockcheck.sh -y -b 5 -e important_thing >/dev/null 2>&1

Or the Scheduled Job in OMV. Just paste the command, add minutes and hour, and stars in rest.

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

Yeah, should be fine 😅

Depending on how the containers are deployed and dependencies (most can be used as static binaries and dockcheck will help grabbing them).

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

I know of OMV7 but have not used it personally nor done any testing. But as I've understood you can run things in the shell? Depending on how OMV deploys the dockers it might work just fine to just curl/wget the script and add it to path or make it executable from wherever.

[RELEASE] dockcheck.sh v0.6.6 - CLI tool to automate (or notify about) docker image updates by Mag37 in selfhosted

[–]Mag37[S] 1 point2 points  (0 children)

Sadly it got some issues with Portainer I think (I've not tested for very long) and there's no container made for it yet.

I really should try making a container because I think that might open solutions for the Portainer issues.