Use Portainer if you don’t want anything to be portable. There are other issues too. Just use Docker Compose.
- 3 Posts
- 577 Comments
Is there a reason you’re not using Docker?
Warmbo is actually his bodyguard, and the corn cream is actually antidote.
Cody & Ko! Noooo! Watch out!!
- hperrin@lemmy.catoLinux@lemmy.ml•Liberux Nexx GNU/Linux smartphone adds cheaper entry modelEnglish111·14 days ago
Because 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.catoLinux@lemmy.ml•Liberux Nexx GNU/Linux smartphone adds cheaper entry modelEnglish7·14 days ago
I like how their idea of entry level is a 16GB RAM phone for €890.
- hperrin@lemmy.catoSteam 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·15 days ago
The 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.
That answer depends on your ISP. It probably goes to a distribution box for your street, which connects up to a distribution box for your neighborhood, which connects up to your ISP, probably through many more distribution boxes.
At a certain point (probably the first or second distribution box), the signal goes from coax cable to fiber.
There are tons of different kinds of distribution boxes, routers, cables, technologies, etc for these networks, so what yours looks like is unknowable to any of us. Here are some examples of neighborhood or street level boxes:
Fiber:
DSL (landline phone lines) in a fiber junction box:
And then the higher level stuff would look something like this (I’ve never actually seen it, so this is just my guess of what it probably looks like, taken from a fiber supply company):
If you want to get a very basic understanding of some of the infrastructure between you and something on the internet, you can use
traceroute
. When I just didtraceroute google.com
, it took five hops just to leave my ISP, so that gives me a very basic understanding of how many levels my ISP has before my traffic gets out to the web.
- hperrin@lemmy.catoUkraine@sopuli.xyz•How Ukraine carried out daring 'Spider Web' attack on Russian bombersEnglish18·18 days ago
Wow. What an awesome victory! Congratulations to everyone involved!
I run an email service called Port87. I was reading some copy to a friend who resells MS Exchange services and I said “legacy email services, such as Microsoft Exchange”, and he got a bit offended. That was much more accurate than this, and he still felt offended.
- hperrin@lemmy.catoAsklemmy@lemmy.ml•Why don't the whole planet just use UTC+00:00 / Universal Time without time zones?English17·20 days ago
Because my noon is the best noon, and your silly noon is unreasonable. It happens at 4am, you silly goose.
Since we have had houses with multiple rooms it has certainly made sense to shout “where are you?”
Scratch that. Since there were opaque things larger than a human that could be positioned in between two humans (rock, tree, bush, animal) it has made sense.
Scratch that. Since there was dark it has made sense.
- hperrin@lemmy.catoTechnology@lemmy.ml•Windows 11 Start Menu Revealed as Resource-Heavy React Native App, Sparks Performance ConcernsEnglish6·22 days ago
Back when I wrote my own start menu replacement (for Windows XP), it worked by turning itself transparent and not responding to mouse input. When you clicked the start button, it would turn itself back to opaque and start responding to mouse input. This meant it opened in maybe 32 milliseconds if it was being particularly slow and took two frames to open instead of one.
- hperrin@lemmy.catoTechnology@lemmy.ml•Windows 11 Start Menu Revealed as Resource-Heavy React Native App, Sparks Performance ConcernsEnglish10·22 days ago
Lolwut? They made the Start Menu with JavaScript? Who are they, me?
- hperrin@lemmy.catoTechnology@beehaw.org•Nick Clegg says asking artists for use permission would ‘kill’ the AI industryEnglish12·25 days ago
Oh no wouldn’t that be a shame. /s
I’m sorry but if your industry requires that you commit a bunch of crimes to make money, it’s not a legitimate industry, it’s a criminal industry. We’ve had these for a long time, and generally they’re frowned upon, because the crimes are usually drugs, guns, murder, sex trafficking, or theft. When the crime is intellectual property theft, apparently we forget to care. Then again, same with wage theft.
- hperrin@lemmy.catoCanada@lemmy.ca•U.S. senators urge Canada to ‘give us another chance’ on trade, tourism - National | Globalnews.caEnglish8·25 days ago
Lol, this is like the vampire, after you said no, asking, “come on, please let me in? I promise I’ll be good.”
Sex party is a much better term. Baby’s don’t have a gender yet.
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!