如何将 docker 图像推送到私有存储库
How to push a docker image to a private repository
我有一个 docker 图像标记为 me/my-image
,我在 docker 集线器上有一个名为 me-private
.
的私人存储库
当我推送 me/my-image
时,我最终总是访问 public 存储库。
专门将我的图像推送到我的私人存储库的确切语法是什么?
您需要先使用 registryhost
:
正确标记您的图像
docker tag [OPTIONS] IMAGE[:TAG] [REGISTRYHOST/][USERNAME/]NAME[:TAG]
然后 docker 使用相同的标签推送。
docker push NAME[:TAG]
示例:
docker tag 518a41981a6a myRegistry.com/myImage
docker push myRegistry.com/myImage
有两种选择:
进入中心,首先创建存储库,并将其标记为私有。然后当你推送到那个回购时,它将是私有的。这是最常见的方法。
登录您的 docker 中心帐户,然后转到您的 global settings。有一个设置允许您设置您推送的存储库的默认可见性。默认情况下它设置为 public,但如果您将其更改为私有,您推送的所有存储库将默认标记为私有。请务必注意,您的帐户中需要有足够的私人存储库可用,否则存储库将被锁定,直到您升级您的计划。
首先转到您的 Docker Hub 帐户并进行回购。这是我的 Docker Hub 帐户的屏幕截图:
从图中可以看出我的repo是“chuangg”
现在进入存储库并通过单击您的图像名称将其设为私有。所以对我来说,我点击了“chuangg/gene_commited_image”,然后转到设置 -> 设为私有。然后我按照屏幕上的说明进行操作
如何将您的 DOCKER 图片上传到 DOCKER HUB
方法 #1= 通过命令行 (cli) 推送图像
1) docker commit <container ID> <repo name>/<Name you want to give the image>
是的,我认为它必须是容器 ID。应该不是图片ID。
例如=docker commit 99e078826312 chuangg/gene_commited_image
2) docker run -it chaung/gene_commited_image
3) docker login --username=<user username> --password=<user password>
例如=docker login --username=chuangg --email=gc.genechaung@gmail.com
是的,您必须先登录。使用“docker logout”
注销
4) docker push chuangg/gene_commited_image
方法 #2= 使用 pom.xml 和命令行推送图像。
注意,我使用了一个名为“build-docker”的 Maven 配置文件。如果您不想使用配置文件,只需删除 <profiles>, <profile>, and <id>build-docker</id>
元素即可。
里面 parent pom.xml:
<profiles>
<profile>
<id>build-docker</id>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Docker 用于部署 Docker 映像的终端命令(来自 pom.xml 所在的目录)= mvn clean deploy -Pbuild-docker docker:push
请注意,方法 #2 和 #3 之间的区别在于方法 #3 有一个额外的 <execution>
用于部署。
方法 #3= 使用 Maven 自动部署到 Docker Hub
将这些东西添加到您的 parent pom.xml:
<distributionManagement>
<repository>
<id>gene</id>
<name>chuangg</name>
<uniqueVersion>false</uniqueVersion>
<layout>legacy</layout>
<url>https://index.docker.io/v1/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>build-docker</id>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project1</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>docker:push</id>
<phase>install</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
转到 C:\Users\Gene.docker\ 目录并将其添加到您的 config.json 文件中:
现在在您的 Docker 快速启动终端中输入 = mvn clean install -Pbuild-docker
对于那些不使用 Maven 配置文件的人,只需键入 mvn clean install
这是我的完整 pom.xml 和我的目录结构的屏幕截图:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gene.app</groupId>
<artifactId>VendingMachineDockerMavenPlugin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Maven Quick Start Archetype</name>
<url>www.gene.com</url>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.gene.sample.Customer_View</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>gene</id>
<name>chuangg</name>
<uniqueVersion>false</uniqueVersion>
<layout>legacy</layout>
<url>https://index.docker.io/v1/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>build-docker</id>
<properties>
<java.docker.version>1.8.0</java.docker.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project1</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>docker:push</id>
<phase>install</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
这是我的Docker文件:
FROM java:8
MAINTAINER Gene Chuang
RUN echo Running Dockerfile in src/docker/vending_machine_emulator/Dockerfile directory
ADD maven/VendingMachineDockerMavenPlugin-1.0-SNAPSHOT.jar /bullshitDirectory/gene-app-1.0-SNAPSHOT.jar
CMD ["java", "-classpath", "/bullshitDirectory/gene-app-1.0-SNAPSHOT.jar", "com/gene/sample/Customer_View" ]
错误 #1= 的解决方案不要将 <execution>
与 Maven 部署阶段同步,因为 Maven 会尝试部署图像 2x 并在 jar 上放置时间戳。这就是我使用 <phase>install</phase>
的原因。
只需三个简单的步骤:
docker login --username username
- 如果您省略
--password
则提示输入密码,这是推荐的,因为它不会将其存储在您的命令历史记录中
docker tag my-image username/my-repo
docker push username/my-repo
如果您 docker 注册表是私有的 并且是自托管的 您应该执行以下操作:
docker login <REGISTRY_HOST>:<REGISTRY_PORT>
docker tag <IMAGE_ID> <REGISTRY_HOST>:<REGISTRY_PORT>/<APPNAME>:<APPVERSION>
docker push <REGISTRY_HOST>:<REGISTRY_PORT>/<APPNAME>:<APPVERSION>
示例:
docker login repo.company.com:3456
docker tag 19fcc4aa71ba repo.company.com:3456/myapp:0.1
docker push repo.company.com:3456/myapp:0.1
首先登录你的私有仓库。
> docker login [OPTIONS] [SERVER]
[OPTIONS]:
-u username
-p password
例如:
> docker login localhost:8080
然后为您的私有存储库标记您的图像
> docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
例如:
> docker tag myApp:v1 localhost:8080/myname/myApp:v1
最后将标记的图像推送到您的私有存储库
>docker push [OPTIONS] NAME[:TAG]
例如:
> docker push localhost:8080/myname/myApp:v1
参考
简单的工作解决方案:
转到此处 https://hub.docker.com/
创建一个名称为例如 johnsmith/private-repository
的 PRIVATE 存储库,这是 NAME/REPOSITORY
您将在构建图像时用于图像的名称。
首先,docker login
其次,我使用“docker build -t johnsmith/private-repository:01 .
”(其中 01 是我的版本名称)创建图像,我使用“docker images
”来确认创建的图像,例如在下面的黄色框中:(抱歉,我不能粘贴 table 格式,只能粘贴文本字符串)
johnsmith/private-repository(REPOSITORY) 01(TAG) c5f4a2861d6e(IMAGE ID) 2 days ago(CREATED) 305MB(SIZE)
- 第三,我使用
docker push johnsmith/private-repository:01
(你的私人仓库将在这里作为例子https://hub.docker.com/r/johnsmith/private-repository/)
完成!
本主题提供有关部署和配置注册表的基本信息
运行 本地注册表
在部署注册表之前,您需要在主机上安装 Docker。
使用如下命令启动注册表容器:
start_registry.sh
#!/bin/bash
docker run -d \
-p 5000:5000 \
--restart=always \
--name registry \
-v /data/registry:/var/lib/registry \
registry:2
将图像从 Docker Hub 复制到您的注册表
从 Docker Hub 拉取 ubuntu:16.04
图像。
$ docker pull ubuntu:16.04
将图像标记为 localhost:5000/my-ubuntu
。这会为现有图像创建一个附加标签。当标记的第一部分是主机名和端口时,Docker 在推送时将其解释为注册表的位置。
$ docker tag ubuntu:16.04 localhost:5000/my-ubuntu
将图像推送到本地注册表 运行 localhost:5000
:
$ docker push localhost:5000/my-ubuntu
删除本地缓存的图像。这不会从您的注册表中删除 localhost:5000/my-ubuntu
图像。
$ docker image remove ubuntu:16.04
$ docker image remove localhost:5000/my-ubuntu
从您的本地注册表中拉取 localhost:5000/my-ubuntu
图像。
$ docker pull localhost:5000/my-ubuntu
部署普通 HTTP 注册表
根据 docs.docker.com,这是非常不安全的并且不推荐。
编辑 daemon.json
文件,其默认位置是 Linux 上的 /etc/docker/daemon.json
或 Windows 服务器上的 C:\ProgramData\docker\config\daemon.json
。如果你使用Docker for Mac
或Docker for Windows
,点击Docker icon -> Preferences -> Daemon
,在insecure registry
.
中添加
如果 daemon.json
文件不存在,请创建它。假设文件中没有其他设置,它应该有以下内容:
{
"insecure-registries" : ["myregistrydomain.com:5000"]
}
启用不安全注册表后,Docker 将执行以下步骤:
- 首先,尝试使用 HTTPS。
- 如果HTTPS可用但证书无效,请忽略有关证书的错误。
- 如果 HTTPS 不可用,请回退到 HTTP。
重新启动 Docker 以使更改生效。
在 dockerhub 上创建存储库:
$docker tag IMAGE_ID UsernameOnDockerhub/repoNameOnDockerhub:latest
$docker push UsernameOnDockerhub/repoNameOnDockerhub:latest
注意:这里
"repoNameOnDockerhub" : 具有您提到的名称的存储库有
出现在 dockerhub
"latest" : 只是标签
以下是将 Docker 图像推送到 DockerHub
的私有存储库的步骤
1- 首先检查 Docker 图像使用命令
docker images
2- 检查 Docker 标记命令帮助
docker tag --help
3- 现在为您创建的图像标记名称
docker tag localImgName:tagName DockerHubUser\Private-repoName:tagName
(标记名称是可选的。默认名称是 latest
)
4- 在将图像推送到 DockerHub 私人仓库之前,首先使用命令
登录 DockerHub
docker login
[提供 dockerHub 用户名和密码登录]
5-现在使用命令
将Docker图像推送到您的私人仓库
docker push [options] ImgName[:tag]
例如 docker push DockerHubUser\Private-repoName:tagName
6- 现在导航到 DockerHub 私人回购,您将看到 Docker 图像被推送到您的私人存储库上,名称在前面的步骤中写为 TagName
dockerhub 中也有一个“默认隐私”设置。访问 https://hub.docker.com/settings/default-privacy 或点击帐户设置->默认隐私。
将开关设置为“私人”。
这不是一个完整的解决方案,但至少默认情况下私有优于默认情况下的 public。你可以回去制作你想要的public。
如果有人正在寻找一种将所有图像推送到私有存储库的快速方法,
您可以使用我的 bash 脚本 - 它会将所有 Docker 图像推送到新的私有注册表:
#!/bin/bash
repo="<change_to_your_new_repo>"
remote_repo="<the_new_repo_name>"
for img in $(docker images --format "{{.Repository}}:{{.Tag}}")
do
image=$(echo $img | cut -d ":" -f 1)
image_tag=$(echo $img | cut -d ":" -f 2)
docker image tag $image:$image_tag $repo/$remote_repo/$image:$image_tag
docker image push $repo/$remote_repo/$image:$image_tag
docker rmi $repo/$remote_repo/$image:$image_tag
done
本地拉取镜像后,可以进行下一步:
docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
然后 docker 使用相同的标签推送。
docker 推送名称[:TAG]
示例:
docker tag gvenzl/oracle-xe:21-slim quay.io/repository/yourDirectory/oracle_xe:oracle-xe
docker push quay.io/repository/yourDirectory/oracle_xe:oracle-xe
我有一个 docker 图像标记为 me/my-image
,我在 docker 集线器上有一个名为 me-private
.
的私人存储库
当我推送 me/my-image
时,我最终总是访问 public 存储库。
专门将我的图像推送到我的私人存储库的确切语法是什么?
您需要先使用 registryhost
:
docker tag [OPTIONS] IMAGE[:TAG] [REGISTRYHOST/][USERNAME/]NAME[:TAG]
然后 docker 使用相同的标签推送。
docker push NAME[:TAG]
示例:
docker tag 518a41981a6a myRegistry.com/myImage
docker push myRegistry.com/myImage
有两种选择:
进入中心,首先创建存储库,并将其标记为私有。然后当你推送到那个回购时,它将是私有的。这是最常见的方法。
登录您的 docker 中心帐户,然后转到您的 global settings。有一个设置允许您设置您推送的存储库的默认可见性。默认情况下它设置为 public,但如果您将其更改为私有,您推送的所有存储库将默认标记为私有。请务必注意,您的帐户中需要有足够的私人存储库可用,否则存储库将被锁定,直到您升级您的计划。
首先转到您的 Docker Hub 帐户并进行回购。这是我的 Docker Hub 帐户的屏幕截图:
从图中可以看出我的repo是“chuangg”
现在进入存储库并通过单击您的图像名称将其设为私有。所以对我来说,我点击了“chuangg/gene_commited_image”,然后转到设置 -> 设为私有。然后我按照屏幕上的说明进行操作
如何将您的 DOCKER 图片上传到 DOCKER HUB
方法 #1= 通过命令行 (cli) 推送图像
1) docker commit <container ID> <repo name>/<Name you want to give the image>
是的,我认为它必须是容器 ID。应该不是图片ID。
例如=docker commit 99e078826312 chuangg/gene_commited_image
2) docker run -it chaung/gene_commited_image
3) docker login --username=<user username> --password=<user password>
例如=docker login --username=chuangg --email=gc.genechaung@gmail.com
是的,您必须先登录。使用“docker logout”
注销4) docker push chuangg/gene_commited_image
方法 #2= 使用 pom.xml 和命令行推送图像。
注意,我使用了一个名为“build-docker”的 Maven 配置文件。如果您不想使用配置文件,只需删除 <profiles>, <profile>, and <id>build-docker</id>
元素即可。
里面 parent pom.xml:
<profiles>
<profile>
<id>build-docker</id>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Docker 用于部署 Docker 映像的终端命令(来自 pom.xml 所在的目录)= mvn clean deploy -Pbuild-docker docker:push
请注意,方法 #2 和 #3 之间的区别在于方法 #3 有一个额外的 <execution>
用于部署。
方法 #3= 使用 Maven 自动部署到 Docker Hub
将这些东西添加到您的 parent pom.xml:
<distributionManagement>
<repository>
<id>gene</id>
<name>chuangg</name>
<uniqueVersion>false</uniqueVersion>
<layout>legacy</layout>
<url>https://index.docker.io/v1/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>build-docker</id>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project1</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>docker:push</id>
<phase>install</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
转到 C:\Users\Gene.docker\ 目录并将其添加到您的 config.json 文件中:
现在在您的 Docker 快速启动终端中输入 = mvn clean install -Pbuild-docker
对于那些不使用 Maven 配置文件的人,只需键入 mvn clean install
这是我的完整 pom.xml 和我的目录结构的屏幕截图:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gene.app</groupId>
<artifactId>VendingMachineDockerMavenPlugin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Maven Quick Start Archetype</name>
<url>www.gene.com</url>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.gene.sample.Customer_View</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>gene</id>
<name>chuangg</name>
<uniqueVersion>false</uniqueVersion>
<layout>legacy</layout>
<url>https://index.docker.io/v1/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>build-docker</id>
<properties>
<java.docker.version>1.8.0</java.docker.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<images>
<image>
<name>chuangg/gene_project1</name>
<alias>${docker.container.name}</alias>
<!-- Configure build settings -->
<build>
<dockerFileDir>${project.basedir}\src\docker\vending_machine_emulator</dockerFileDir>
<assembly>
<inline>
<fileSets>
<fileSet>
<directory>${project.basedir}\target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
</fileSets>
</inline>
</assembly>
</build>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker:build</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>docker:push</id>
<phase>install</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
这是我的Docker文件:
FROM java:8
MAINTAINER Gene Chuang
RUN echo Running Dockerfile in src/docker/vending_machine_emulator/Dockerfile directory
ADD maven/VendingMachineDockerMavenPlugin-1.0-SNAPSHOT.jar /bullshitDirectory/gene-app-1.0-SNAPSHOT.jar
CMD ["java", "-classpath", "/bullshitDirectory/gene-app-1.0-SNAPSHOT.jar", "com/gene/sample/Customer_View" ]
错误 #1= 的解决方案不要将 <execution>
与 Maven 部署阶段同步,因为 Maven 会尝试部署图像 2x 并在 jar 上放置时间戳。这就是我使用 <phase>install</phase>
的原因。
只需三个简单的步骤:
docker login --username username
- 如果您省略
--password
则提示输入密码,这是推荐的,因为它不会将其存储在您的命令历史记录中
- 如果您省略
docker tag my-image username/my-repo
docker push username/my-repo
如果您 docker 注册表是私有的 并且是自托管的 您应该执行以下操作:
docker login <REGISTRY_HOST>:<REGISTRY_PORT>
docker tag <IMAGE_ID> <REGISTRY_HOST>:<REGISTRY_PORT>/<APPNAME>:<APPVERSION>
docker push <REGISTRY_HOST>:<REGISTRY_PORT>/<APPNAME>:<APPVERSION>
示例:
docker login repo.company.com:3456
docker tag 19fcc4aa71ba repo.company.com:3456/myapp:0.1
docker push repo.company.com:3456/myapp:0.1
首先登录你的私有仓库。
> docker login [OPTIONS] [SERVER]
[OPTIONS]:
-u username
-p password
例如:
> docker login localhost:8080
然后为您的私有存储库标记您的图像
> docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
例如:
> docker tag myApp:v1 localhost:8080/myname/myApp:v1
最后将标记的图像推送到您的私有存储库
>docker push [OPTIONS] NAME[:TAG]
例如:
> docker push localhost:8080/myname/myApp:v1
参考
简单的工作解决方案:
转到此处 https://hub.docker.com/
创建一个名称为例如 johnsmith/private-repository
的 PRIVATE 存储库,这是 NAME/REPOSITORY
您将在构建图像时用于图像的名称。
首先,
docker login
其次,我使用“
docker build -t johnsmith/private-repository:01 .
”(其中 01 是我的版本名称)创建图像,我使用“docker images
”来确认创建的图像,例如在下面的黄色框中:(抱歉,我不能粘贴 table 格式,只能粘贴文本字符串)
johnsmith/private-repository(REPOSITORY) 01(TAG) c5f4a2861d6e(IMAGE ID) 2 days ago(CREATED) 305MB(SIZE)
- 第三,我使用
docker push johnsmith/private-repository:01
(你的私人仓库将在这里作为例子https://hub.docker.com/r/johnsmith/private-repository/)
完成!
本主题提供有关部署和配置注册表的基本信息
运行 本地注册表
在部署注册表之前,您需要在主机上安装 Docker。
使用如下命令启动注册表容器:
start_registry.sh
#!/bin/bash
docker run -d \
-p 5000:5000 \
--restart=always \
--name registry \
-v /data/registry:/var/lib/registry \
registry:2
将图像从 Docker Hub 复制到您的注册表
从 Docker Hub 拉取
ubuntu:16.04
图像。$ docker pull ubuntu:16.04
将图像标记为
localhost:5000/my-ubuntu
。这会为现有图像创建一个附加标签。当标记的第一部分是主机名和端口时,Docker 在推送时将其解释为注册表的位置。$ docker tag ubuntu:16.04 localhost:5000/my-ubuntu
将图像推送到本地注册表 运行
localhost:5000
:$ docker push localhost:5000/my-ubuntu
删除本地缓存的图像。这不会从您的注册表中删除
localhost:5000/my-ubuntu
图像。$ docker image remove ubuntu:16.04 $ docker image remove localhost:5000/my-ubuntu
从您的本地注册表中拉取
localhost:5000/my-ubuntu
图像。$ docker pull localhost:5000/my-ubuntu
根据 docs.docker.com,这是非常不安全的并且不推荐。
编辑
中添加daemon.json
文件,其默认位置是 Linux 上的/etc/docker/daemon.json
或 Windows 服务器上的C:\ProgramData\docker\config\daemon.json
。如果你使用Docker for Mac
或Docker for Windows
,点击Docker icon -> Preferences -> Daemon
,在insecure registry
.如果
daemon.json
文件不存在,请创建它。假设文件中没有其他设置,它应该有以下内容:{ "insecure-registries" : ["myregistrydomain.com:5000"] }
启用不安全注册表后,Docker 将执行以下步骤:
- 首先,尝试使用 HTTPS。
- 如果HTTPS可用但证书无效,请忽略有关证书的错误。
- 如果 HTTPS 不可用,请回退到 HTTP。
- 首先,尝试使用 HTTPS。
重新启动 Docker 以使更改生效。
在 dockerhub 上创建存储库:
$docker tag IMAGE_ID UsernameOnDockerhub/repoNameOnDockerhub:latest
$docker push UsernameOnDockerhub/repoNameOnDockerhub:latest
注意:这里 "repoNameOnDockerhub" : 具有您提到的名称的存储库有 出现在 dockerhub
"latest" : 只是标签
以下是将 Docker 图像推送到 DockerHub
的私有存储库的步骤1- 首先检查 Docker 图像使用命令
docker images
2- 检查 Docker 标记命令帮助
docker tag --help
3- 现在为您创建的图像标记名称
docker tag localImgName:tagName DockerHubUser\Private-repoName:tagName
(标记名称是可选的。默认名称是 latest
)
4- 在将图像推送到 DockerHub 私人仓库之前,首先使用命令
登录 DockerHubdocker login
[提供 dockerHub 用户名和密码登录]
5-现在使用命令
将Docker图像推送到您的私人仓库docker push [options] ImgName[:tag]
例如 docker push DockerHubUser\Private-repoName:tagName
6- 现在导航到 DockerHub 私人回购,您将看到 Docker 图像被推送到您的私人存储库上,名称在前面的步骤中写为 TagName
dockerhub 中也有一个“默认隐私”设置。访问 https://hub.docker.com/settings/default-privacy 或点击帐户设置->默认隐私。
将开关设置为“私人”。
这不是一个完整的解决方案,但至少默认情况下私有优于默认情况下的 public。你可以回去制作你想要的public。
如果有人正在寻找一种将所有图像推送到私有存储库的快速方法, 您可以使用我的 bash 脚本 - 它会将所有 Docker 图像推送到新的私有注册表:
#!/bin/bash
repo="<change_to_your_new_repo>"
remote_repo="<the_new_repo_name>"
for img in $(docker images --format "{{.Repository}}:{{.Tag}}")
do
image=$(echo $img | cut -d ":" -f 1)
image_tag=$(echo $img | cut -d ":" -f 2)
docker image tag $image:$image_tag $repo/$remote_repo/$image:$image_tag
docker image push $repo/$remote_repo/$image:$image_tag
docker rmi $repo/$remote_repo/$image:$image_tag
done
本地拉取镜像后,可以进行下一步:
docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
然后 docker 使用相同的标签推送。
docker 推送名称[:TAG]
示例:
docker tag gvenzl/oracle-xe:21-slim quay.io/repository/yourDirectory/oracle_xe:oracle-xe
docker push quay.io/repository/yourDirectory/oracle_xe:oracle-xe