Use Portainer if you don’t want anything to be portable. There are other issues too. Just use Docker Compose.
- 1 Post
- 69 Comments
Is there a reason you’re not using Docker?
hperrin@lemmy.cato Technology@lemmy.world•For the first time, social media overtakes TV as Americans’ top news sourceEnglish181·22 hours agoSocial media is not a news source.
hperrin@lemmy.cato No Stupid Questions@lemmy.world•Is it weird I sleep with an old blanket I've had since I was a young girl?English351·2 days agoThat’s not weird in the sense that it’s unusual, because that’s so usual we have a term for it. And it’s really only weird if you consider it weird. There’s nothing wrong with finding comfort in a familiar object.
I personally have a Game Boy Color my dad gave to me when I was recovering from surgery when I was 11. I keep it on my TV stand. I was incredibly distraught when I pulled it out of storage and the batteries in it had leaked all over the circuit board, damaging the board beyond repair. My dad actually got me another one on eBay that I harvested the circuit board from to replace mine. I don’t play it, but knowing that it now works and I could play it if I wanted to gives me comfort. I even put the old board in the other Game Boy just so I know that I still have all of the original parts.
I think it’s probably something most of us do, and I don’t think you should feel any shame in it.
hperrin@lemmy.cato Linux@programming.dev•What is your most useful Linux app which others might not know about (please don't just give the name but a link and why it is good for you) ?English3·3 days agoWarpinator is meant only to send/receive files and folders, and requires a supported device on both sides.
QuickDAV lets you send/receive/manage files (meaning you can copy and move files on the host from the client). It doesn’t require a supported device in both sides, since it works with either a WebDAV client or a browser. So as long as one device can run QuickDAV, and the other has at least a browser, it’ll work. (QuickDAV works with a Sega Dreamcast!)
Warpinator is incredibly easy to use. Open the app on both machines, select the other machine, select the file/folder, send.
QuickDAV is a bit harder. Open the app on one of the machines, then type the information from the app into the client/browser on the other machine. Then you can download/upload/manage.
hperrin@lemmy.cato Linux@programming.dev•What is your most useful Linux app which others might not know about (please don't just give the name but a link and why it is good for you) ?English6·3 days agoIt also has an older brother if you need a permanent WebDAV server:
hperrin@lemmy.cato Linux@programming.dev•What is your most useful Linux app which others might not know about (please don't just give the name but a link and why it is good for you) ?English10·3 days agoThis is not a very popular app, but I use it all the time. Full disclosure, this is my own app, but it’s free and open source.
It’s for transferring and managing files and folders over your local network. I use it whenever I need to just ad-hoc move files between things.
hperrin@lemmy.cato Programmer Humor@programming.dev•Fox news trying to explain github.English88·5 days agoRepository: your code.
Fork: my code.
Pull request: u want my code?
hperrin@lemmy.cato Programmer Humor@programming.dev•Fox news trying to explain github.English66·5 days agoThis physically hurts me.
Even if it’s not an attack of their argument, and is stated simply as a fact, a personal attack does still work to discredit the opponent to any audience, and can therefore be considered a fallacious ad hominem tactic.
It’s basically poisoning the well. Even though you’re not explicitly saying it, the audience will infer that someone who can justifiably be described as “shit for brains” should not be trusted on the relevant topic. Even someone profoundly stupid can be right, and even someone incredibly intelligent can be wrong.
That being said, even if someone has been viciously personally attacked, if the attacker has otherwise proved their argument wrong, that’s what truly matters. It does definitely make me think less of someone if they constantly personally attack their opponent, though.
hperrin@lemmy.cato No Stupid Questions@lemmy.world•Why do fancy cars look fancy and cheap cars don't? Can't you just slap a Lamborghini-style chassis onto a lawnmower engine if you want?English1·6 days agoCheck out the new Corvette.
What I’ve done in this scenario is use a very long silent black video from YouTube. There’s a bunch. It technically plays audio, so the soundbar shouldn’t sleep, but the audio is just a silent signal.
https://m.youtube.com/results?search_query=Silent+black+screen+24+hours
Aw, they’re sharing their bottles of soda with each other. And it’s definitely not anything other than that.
hperrin@lemmy.cato Linux@lemmy.ml•Liberux Nexx GNU/Linux smartphone adds cheaper entry modelEnglish111·11 days agoBecause the Android SDK is owned and controlled by Google. They’ve consistently made decisions to make it harder to stay out of their ecosystem (like the new “Integrity” API).
As consumers, we would vastly benefit from having another choice that isn’t controlled by one of the biggest tech companies in the world.
hperrin@lemmy.cato Linux@lemmy.ml•Liberux Nexx GNU/Linux smartphone adds cheaper entry modelEnglish7·11 days agoI like how their idea of entry level is a 16GB RAM phone for €890.
hperrin@lemmy.cato Technology@lemmy.world•Scientists in Japan develop plastic that dissolves in seawater within hoursEnglish3·11 days agoYeah, fair enough. That’s a great point. I will update my opinion of this advancement.
hperrin@lemmy.cato Technology@lemmy.world•Scientists in Japan develop plastic that dissolves in seawater within hoursEnglish284·12 days agoThe catch is that it’s useless in most plastics applications, where you really don’t want it to dissolve easily. Probably more catches, but that’s the one I see right away.
hperrin@lemmy.cato Technology@lemmy.world•Scientists in Japan develop plastic that dissolves in seawater within hoursEnglish122·12 days agoYou see the thing is, the point of plastic is that it doesn’t dissolve easily. I can see this having some niche applications, but this won’t be replacing most plastics any time soon.
hperrin@lemmy.cato Steam Deck@sopuli.xyz•GeForce Now finally gets a native app for the Steam Deck, solving what was our biggest complaint with the streaming service on Valve's plucky handheldEnglish2·12 days agoThe most successful handheld gaming PC in history (admittedly, only if you don’t include consoles like the Switch), and still can’t get no respect.
So, Jellyfin is one of those apps where the Docker documentation is really lacking. I’m gonna give you my
docker-compose.yml
file in case it helps:For me
/data/
is my RAID array, which is why my jellyfin data directory is there. Everything else goes in the same directory as the compose file. My system has a graphics card that does transcoding (Arc A380), so I have/dev/dri
under devices.You should learn a lot about Docker Compose, because it will help you tremendously. I use Jellyfin behind an Nginx Proxy Manager reverse proxy. I’d highly recommend it. Here’s my compose file for that:
Running in “host” mode is important, instead of just forwarding ports, because it lets you forward things to localhost, like pointing
https://media/.[mydomain]/
tohttp://127.0.0.1:8096/
for Jellyfin.Anyway, best of luck to you, and I hope that helps!