maven docker simple.

<profiles>
<profile>
<id>docker-build-local</id>
<properties>
<docker-maven-plugin.host>http://192.168.2.210:2374</docker-maven-plugin.host>
<docker-maven-plugin.registry.url>registry.cn-hangzhou.aliyuncs.com</docker-maven-plugin.registry.url>
<docker-maven-plugin.image.tag>snapshot</docker-maven-plugin.image.tag>
<docker-maven-plugin.skip.build>false</docker-maven-plugin.skip.build>
<docker-maven-plugin.skip.docker>false</docker-maven-plugin.skip.docker>
</properties>
<activation>
<property>
<name>dockerBuild</name>
<value>local</value>
</property>
</activation>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<configuration>
<env>
<LANG>zh_CH.UTF-8</LANG>
</env>
<runs>
<run>
echo "test something"
</run>
</runs>
</configuration>
</plugin>
</plugins>
</build>