Merge pull request #34517 from anthonydahanne
* gh-34517: Polish "Add documentation for publishing images with Maven command line" Add documentation for publishing images with Maven command line Closes gh-34517pull/34764/head
commit
bf48c6c7f3
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- tag::docker[] -->
|
||||
<project>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<docker>
|
||||
<publishRegistry>
|
||||
<url>${docker.publishRegistry.url}</url>
|
||||
<username>${docker.publishRegistry.username}</username>
|
||||
<password>${docker.publishRegistry.password}</password>
|
||||
</publishRegistry>
|
||||
</docker>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
<!-- end::docker[] -->
|
Loading…
Reference in New Issue