this post was submitted on 03 Aug 2023
141 points (99.3% liked)

Apple

16909 readers
78 users here now

Welcome

to the largest Apple community on Lemmy. This is the place where we talk about everything Apple, from iOS to the exciting upcoming Apple Vision Pro. Feel free to join the discussion!

Rules:
  1. No NSFW Content
  2. No Hate Speech or Personal Attacks
  3. No Ads / Spamming
    Self promotion is only allowed in the pinned monthly thread

Lemmy Code of Conduct

Communities of Interest:

Apple Hardware
Apple TV
Apple Watch
iPad
iPhone
Mac
Vintage Apple

Apple Software
iOS
iPadOS
macOS
tvOS
watchOS
Shortcuts
Xcode

Community banner courtesy of u/Antsomnia.

founded 1 year ago
MODERATORS
 

https://fosstodon.org/@fedora/110821025948014034

TL;DR: Asahi Linux will be developed with the Fedora Linux distribution as the primary distribution moving forward. Fedora’s discourse forum will be the primary place to discuss Asahi Linux.

you are viewing a single comment's thread
view the rest of the comments
[–] Facoris@lemmy.world 5 points 11 months ago (1 children)

If I understood correctly, Docker is a software to maintain containers. Containers are ready to go images that can run on top of your base os, like virtualisation but in a more direct way, for exemple by sharing the kernel with the os, making it lighter and way more efficient than full virtualisation

[–] LazaroFilm@artemis.camp 0 points 11 months ago (2 children)

So like an App Store for programmers…?

[–] dandroid@dandroid.app 1 points 11 months ago* (last edited 11 months ago)

No, not really. Containers are sort of like tiny virtual machines that run one program. Under the hood, it's different from that, but for simplicity's sake, let's just leave it at that. With this analogy, Docker would be like VMWare's software. You can use it to start and stop containers, see what containers are running, run a shell on them, etc. Docker provides the infrastructure for containers to communicate with each other, the host OS and mounted storage volumes. The one feature it has that is sort of like an app store is that it can be used to pull container images. But you need to provide the URI for that yourself. You can't just browse images as far as I know, which I think would be an integral feature of an app store. Docker Hub is a web page that allows you to browse images, and you can copy the URI from there into your CLI to have Docker pull the image.