सबसे पहले अपने डॉकर हब खाते में जाएं और रेपो बनाएं। यहाँ मेरे डॉकर हब खाते का एक स्क्रीनशॉट है:
तस्वीर से, आप देख सकते हैं कि मेरा रेपो "चुआंग" है
अब रेपो में जाएं और अपनी छवि के नाम पर क्लिक करके इसे निजी बनाएं। तो मेरे लिए, मैंने "chuangg / gen_commited_image" पर क्लिक किया, फिर मैं सेटिंग्स -> मेक प्राइवेट में गया। फिर मैंने ऑन स्क्रीन निर्देशों का पालन किया
अपने डॉकटर इमेज को जारी करने के लिए कैसे करें डॉकटर हब
विधि # 1 = कमांड लाइन (cli) के माध्यम से अपनी छवि को धक्का
1) docker commit <container ID> <repo name>/<Name you want to give the image>
हां, मुझे लगता है कि यह कंटेनर आईडी होना चाहिए। यह शायद छवि आईडी नहीं हो सकता।
उदाहरण के लिए = 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
हां, आपको पहले लॉगिन करना होगा। "डॉकटर लॉगआउट" का उपयोग कर लॉगआउट करें
4) docker push chuangg/gene_commited_image
विधि # 2 = pom.xml और कमांड लाइन का उपयोग करके अपनी छवि को धक्का।
ध्यान दें, मैंने "बिल्ड-डूकर" नामक एक मैवेन प्रोफाइल का उपयोग किया था। यदि आप प्रोफ़ाइल का उपयोग नहीं करना चाहते हैं, तो <profiles>, <profile>, and <id>build-docker</id>
तत्वों को हटा दें ।
मूल 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>
डॉकर टर्मिनल कमांड को डॉकर इमेज (उस निर्देशिका से जहां आपका pom.xml स्थित है) को तैनात करने के लिए = mvn clean deploy -Pbuild-docker docker:push
ध्यान दें, विधि # 2 और # 3 के बीच का अंतर यह है कि विधि # 3 में एक अतिरिक्त है <execution>
परिनियोजन के लिए ।
विधि # 3 = स्वचालित रूप से डॉकर हब पर तैनात करने के लिए मावेन का उपयोग करना
इस सामग्री को अपने मूल 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 फ़ाइल में जोड़ें:
अब अपने डॉकर क्विकस्टार्ट टर्मिनल टाइप = में mvn clean install -Pbuild-docker
आप में से लोग मावेन प्रोफाइल का उपयोग नहीं कर रहे हैं, बस टाइप करें 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>
यहाँ मेरी ग्रहण निर्देशिका है:
यहाँ मेरा डॉकफ़ाइल है:
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:
त्रुटि # 1 के लिए समाधान = <execution>
मावेन की तैनाती के चरण के साथ सिंक न करें क्योंकि तब मावेन छवि 2x को तैनात करने की कोशिश करता है और जार पर एक टाइमस्टैम्प डालता है। इसलिए मैंने इस्तेमाल किया <phase>install</phase>
।