Najpierw przejdź do swojego konta Docker Hub i zrób repozytorium. Oto zrzut ekranu mojego konta Docker Hub:
Ze zdjęcia widać, że moje repo to „chuangg”
Teraz przejdź do repozytorium i ustaw je jako prywatne, klikając nazwę obrazu. Więc dla mnie kliknąłem „chuangg / gene_commited_image”, a potem poszedłem do Ustawienia -> Ustaw jako prywatny. Następnie wykonałem instrukcje na ekranie
JAK ZAŁOŻYĆ OBRAZ DOCKERA NA PIASTĘ DOCKER
Metoda nr 1 = Przepychanie obrazu przez linię poleceń (cli)
1) docker commit <container ID> <repo name>/<Name you want to give the image>
Tak, myślę, że musi to być identyfikator kontenera. Prawdopodobnie nie może to być identyfikator obrazu.
Na przykład = docker commit 99e078826312 chuangg/gene_commited_image
2) docker run -it chaung/gene_commited_image
3) docker login --username=<user username> --password=<user password>
Na przykład = docker login --username=chuangg --email=gc.genechaung@gmail.com
Tak, musisz się najpierw zalogować. Wyloguj się za pomocą „wylogowania dokera”
4) docker push chuangg/gene_commited_image
Metoda nr 2 = Przesuwanie obrazu za pomocą pom.xml i wiersza poleceń.
Uwaga: użyłem profilu Maven o nazwie „build-docker”. Jeśli nie chcesz używać profilu, po prostu usuń <profiles>, <profile>, and <id>build-docker</id>
elementy.
Wewnątrz nadrzędnego 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 Terminal Command, aby wdrożyć obraz Docker (z katalogu, w którym znajduje się plik pom.xml) = mvn clean deploy -Pbuild-docker docker:push
Uwaga: różnica między metodą nr 2 i nr 3 polega na tym, że metoda nr 3 ma dodatkową zaletę <execution>
dla wdrożenia.
Metoda nr 3 = Użycie Maven do automatycznego wdrożenia w Docker Hub
Dodaj to do swojego pom.xml twojego rodzica:
<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>
Przejdź do katalogu C: \ Users \ Gene.docker \ i dodaj to do pliku config.json:
Teraz w Docker Quickstart Terminal wpisz = mvn clean install -Pbuild-docker
Jeśli nie używasz profili Maven, po prostu wpisz mvn clean install
Oto zrzut ekranu komunikatu o sukcesie:
Oto mój pełny pom.xml i zrzut ekranu mojej struktury katalogów:
<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>
Oto mój katalog Eclipse:
Oto mój plik 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" ]
Typowy błąd nr 1:
Rozwiązanie dla błędu nr 1 = Nie synchronizuj <execution>
fazy wdrażania z maven, ponieważ następnie maven próbuje wdrożyć obraz 2x i umieszcza znacznik czasu na słoiku. Właśnie dlatego użyłem <phase>install</phase>
.