What does networking have to do with docker? You haven’t explained what you’re trying to achieve.
- 1 Post
- 603 Comments
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Bitwarden CLI distributed through NPM has been compromised. Bitwarden Statement on Checkmarx Supply Chain Incident.English
101·6 days agoNpm is a fucking mess…
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Looking for a way to have a web interface for shell commandsEnglish
8·14 days agoToo many features
What does that even mean? Are you looking for a bespoke system that does exactly what you want and nothing else?
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•I Replaced $150/Month of SaaS With a $24 VPS and a Weekend — Building Your Private AI Infrastructure [1/5]English
51·18 days agoWhen that data resides on a third-party SaaS platform, I am trusting their security architecture — which I cannot audit, cannot verify, and cannot modify.
And which was designed by and is operated by dedicated teams of professionals.
Which you are not.
Which would you find easier to explain to a judge - that your client data was part of a larger Google breech and attack or that your bespoke home grown system was misconfigured?
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•You Can Now Selfhost Your Own Community or Build Your Own Platform on Our Open Source P2P Social Media ProtocolEnglish
31·20 days agoThe only things I see it used for are 4chan replacements and crypto bs. This seems to aspire to be the former.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•You Can Now Selfhost Your Own Community or Build Your Own Platform on Our Open Source P2P Social Media ProtocolEnglish
32·20 days agoYeah, “built on ipfs” is a decent red flag.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•You Can Now Selfhost Your Own Community or Build Your Own Platform on Our Open Source P2P Social Media ProtocolEnglish
92·20 days ago🤣
Yeah - alt.binaries never worked.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•You Can Now Selfhost Your Own Community or Build Your Own Platform on Our Open Source P2P Social Media ProtocolEnglish
192·20 days agoIt’s also text-based by design. You can’t upload media directly. If someone wants to share media, they have to link to an external host and the UI just embeds it.
Kids still learning about base64 encoding.
atzanteol@sh.itjust.worksto
Linux@lemmy.ml•Can btrfs snapshots help me recover from botched attempts to follow online guides?English
1·23 days agoYeah, containers can be quite useful for experimenting. Distrobox also if you need a more desktop-like experience.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Haven't been as busy as you guys, but still wanted to show offEnglish
1·23 days agoOh - I like that!
atzanteol@sh.itjust.worksto
Linux@lemmy.ml•rsync - same application version, but different protocol versions?English
1·24 days agoYou haven’t said what errors you’re seeing so it’s difficult for anyone to provide any help…
But I highly doubt rsync is the issue.
atzanteol@sh.itjust.worksto
Linux@lemmy.ml•rsync - same application version, but different protocol versions?English
2·24 days agoSeems unlikely. It would probably “not work at all” if a protocol mismatch was an issue. I’m willing to bet raync can fall back to older protocols.
atzanteol@sh.itjust.worksto
Linux@lemmy.ml•Super slow old Samsung laptop, needs Light weight distro, for SNES games mebbe?English
2·25 days agoWhat do you think a “lighter” distro looks like? Just uninstall stuff you don’t want.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Haven't been as busy as you guys, but still wanted to show offEnglish
1·26 days agoI think you choose a poor example.
When I say long name I wasn’t implying meaningless ones.
Sooo, that example wasn’t exactly “contrived” - it’s based on a standard I see where I work.
DB - it's a database! DW - and a data warehouse at that! ORCL - It's an Oracle database! HHI - Application or team using / managing this database P - Production (T for Test - love the 1 char difference between names!) 01 - There may be more than one.This is more what I’m arguing against - embedding meta-data about the thing into its name. Especially when all of that information is available in AWS metadata.
[Site][service][Rack]makes sense for on-premise stuff - no argument there.I’m just saying long names dont have to be obtuse or confusing.
Agree
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Haven't been as busy as you guys, but still wanted to show offEnglish
31·26 days agoIn a business with tens of thousands of servers, it makes sense to have long complicated names.
I’m actually not convinced of this approach. It’s one of those things that makes perfect logical sense when you say it - but in practice “DBDWWHORCLHHIP01” is just as meaningless as “Hercules”. And it’s a lot more difficult to say, remember and differentiate from “DBDWWHORCLHHID01”. You may as well just use UUIDs at that point.
Humans are really good at associating names with things. It’s why people have names. We don’t call people “AMCAM601W” for a reason. Even in conversations you don’t rattle off the long initialism names of systems - you say “The <product> database”.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Haven't been as busy as you guys, but still wanted to show offEnglish
51·26 days agoGod I hate the “stuff as much information into a server name as you can with no separators in all caps” naming conventions…
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How do you document your setup?English
21·27 days agoI get that - it’s difficult to see the point in it until you’ve gone along without it. Especially as a beginner since you don’t have a strong sense of what problems you will encounter and how these tools solve those problems.
At some point the learning curve for IaaC becomes worth the investment. I actually pushed off learning k8s myself for some time because it was “too complicated” and docker-compose worked just fine for me. And now that I’ve spent time learning it I converted over very quickly and wouldn’t go back… It’s much easier to maintain, monitor and setup new services now.
Depending on your environment something like Ansible might be a good place to start. You can begin even with just a simple playbook that does an “apt update && apt upgrade” on all your systems. And then start using it to push out standard configurations, install software, create users, etc. The benefit pays off in time. For example - recently (yesterday) I was able to install Apache Alloy on a half-dozen systems trivially because I have a set of Ansible scripts that manage my systems. Literally took 10 mins. All servers have the app installed, running, and using the same configuration. And I can modify that configuration across all those systems just as easily. It’s very powerful and reduces “drift” where some systems are configured incorrectly and over time you forget “which one the correct one?” For me the “correct one” is the one in source control.
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•How do you document your setup?English
501·27 days agoThe fun thing about infrastructure as code is that the terraform, ansible and k8s manifests are documentation.
I only really need to document some bootstrap things in case of emergency and maybe some “architectural” things. I use joplin for that (and many other things).
atzanteol@sh.itjust.worksto
Selfhosted@lemmy.world•Jellyfin critical security update - This is not a jokeEnglish
2·28 days agodeleted by creator

“I only run artisanal applications built using vi without any plugins”