We’re excited to announce that Docker Hub can now help you distribute any type of application artifact! Before today, you could only use Docker Hub to store and distribute container images — or artifacts usable by container runtimes.

Docker Hub acts as an image registry and is perfectly suited for distributing application artifacts. That’s why we’ve added support for any software artifact — packaged as an OCI image — to Docker Hub.

Say we re-tag the Redis Docker Official Image and push it to Docker Hub: $ docker tag redis:3.2-alpine docker/demo:v1.2.2 $ docker push docker/demo:v1.2.2

Related Articles