Image Repository Field for Official Docker Images

HarryMuscle

Contributor
Joined
Nov 15, 2021
Messages
161
What is the correct way to specify an official Docker image when using the Launch Docker Image button? Most docker images take the format "author/image", however, official images use just one name. For example the official nginx Docker image is just called "nginx". However, if you enter "nginx" in the Image Repository field when using the Launch Docker Image button it never downloads the Docker image and gets stuck at Deploying.

Thanks,
Harry
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
Try dockerfile/nginx.
 

truecharts

Guru
Joined
Aug 19, 2021
Messages
788
Try:
library/nginx

Or:
registry.hub.docker.com/library/nginx

Or use our mirror and use:
tccr.io/truecharts/nginx
 
Top