Anzeige: Ladegerät von Anker mit 100 W bei Amazon zum halben Preis
Amazon hat ein Ladegerät von Anker mit 100 W im Angebot, das dank GaN-II-Technologie kompakt gebaut ist und effizient arbeitet. (Anker, Technik/Hardware)
Quelle: Golem
Amazon hat ein Ladegerät von Anker mit 100 W im Angebot, das dank GaN-II-Technologie kompakt gebaut ist und effizient arbeitet. (Anker, Technik/Hardware)
Quelle: Golem
Der chinesische Hersteller Xpeng liefert Prozessoren für VW-Autos in China. Das neue SUV G7 nutzt bis zu drei schnelle KI-Chips. (Autonomes Fahren, KI)
Quelle: Golem
Die dritte Staffel startet bald, die vierte wird produziert und die fünfte ist gerade bestellt worden. Zugleich wird die Serie mit Staffel 5 auch eingestellt. (Star Trek, Science-Fiction)
Quelle: Golem
3.400 Stunden lang hat Monitors Unboxed einen OLED-Monitor produktiv genutzt. Das ist mit statischen Elementen und Taskbar ein Worst Case. (OLED, Display)
Quelle: Golem
Ein KI-Experiment auf Wikipedia endet früher als geplant, nachdem zahlreiche freiwillige Autoren deutlich Kritik geäußert haben. (Wikipedia, KI)
Quelle: Golem
Der entscheidende Treibstoff für die Kernfusion ist extrem selten. Jetzt wurde gezeigt, dass Tritium bei der Fusion selbst erzeugt werden kann. (Kernfusion, Start-up)
Quelle: Golem
Bereits diesen Sommer startet Warner das HBO-Abo Max in vielen weiteren Ländern Europas. (HBO, Disney)
Quelle: Golem
Strafverfolgern aus 26 Ländern ist ein großer Schlag gegen Cybercrime gelungen. Sie haben über 20.000 Systeme vom Netz genommen und 32 Personen verhaftet. (Cybercrime, Virus)
Quelle: Golem
When we first released Docker Model Runner, it came with built-in support for running AI models published and maintained by Docker on Docker Hub. This made it simple to pull a model like llama3.2 or gemma3 and start using it locally with familiar Docker-style commands.
Model Runner now supports three new commands: tag, push, and package. These enable you to share models with your team, your organization, or the wider community. Whether you’re managing your own fine-tuned models or curating a set of open-source models, Model Runner now lets you publish them to Docker Hub or any other OCI Artifact compatible Container Registry. For teams using Docker Hub, enterprise features like Registry Access Management (RAM) provide policy-based controls and guardrails to help enforce secure, consistent access.
Tagging and pushing to Docker Hub
Let’s start by republishing an existing model from Docker Hub under your own namespace.
# Step 1: Pull the model from Docker Hub
$ docker model pull ai/smollm2
# Step 2: Tag it for your own organization
$ docker model tag ai/smollm2 myorg/smollm2
# Step 3: Push it to Docker Hub
$ docker model push myorg/smollm2
That’s it! Your model is now available at myorg/smollm2 and ready to be consumed using Model Runner by anyone with access.
Pushing to other container registries
Model Runner supports other container registries beyond Docker Hub, including GitHub Container Registry (GHCR).
# Step 1: Tag for GHCR
$ docker model tag ai/smollm2 ghcr.io/myorg/smollm2
# Step 2: Push to GHCR
$ docker model push ghcr.io/myorg/smollm2
Authentication and permissions work just like they do with regular Docker images in the context of GHCR, so you can leverage your existing workflow for managing registry credentials.
Packaging a custom GGUF file
Want to publish your own model file? You can use the package command to wrap a .gguf file into a Docker-compatible OCI artifact and directly push it into a Container Registry, such as Docker Hub.
# Step 1: Download a model, e.g. from HuggingFace
$ curl -L -o model.gguf https://huggingface.co/TheBloke/Mistral-7B-v0.1-GGUF/resolve/main/mistral-7b-v0.1.Q4_K_M.gguf
# Step 2: Package and push it
$ docker model package –gguf "$(pwd)/model.gguf" –push myorg/mistral-7b-v0.1:Q4_K_M
You’ve now turned a raw model file in GGUF format into a portable, versioned, and sharable artifact that works seamlessly with docker model run.
Conclusion
We’ve seen how easy it is to publish your own models using Docker Model Runner’s new tag, push, and package commands. These additions bring the familiar Docker developer experience to the world of AI model sharing. Teams and enterprises using Docker Hub can securely manage access and control for their models, just like with container images, making it easier to scale GenAI applications across teams.
Stay tuned for more improvements to Model Runner that will make packaging and running models even more powerful and flexible.
Learn more
Read our quickstart guide to Docker Model Runner.
Find documentation for Model Runner.
Subscribe to the Docker Navigator Newsletter.
New to Docker? Create an account.
Have questions? The Docker community is here to help.
Quelle: https://blog.docker.com/feed/
Amazon Web Services (AWS), Microsoft Azure und Google Cloud würden eine gute Leistung bringen, räumte Bitkom-Präsident Ralf Wintergerst ein. Aber viele deutsche Unternehmen seien bereit, sehr viel Geld in die Cloud zu investieren. (Cloud, Web Service)
Quelle: Golem