Skip to content

Commit

Permalink
馃 refactor(docker-pom): no tagging from name
Browse files Browse the repository at this point in the history
  • Loading branch information
duncdrum committed May 8, 2023
1 parent 83086c3 commit 6d57ed7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions exist-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<assemble.dir>${project.build.directory}/exist-docker-${project.version}-docker-dir</assemble.dir>
<exist.uber.jar.filename>exist.uber.jar</exist.uber.jar.filename>
<docker.tag>latest</docker.tag>
<docker.debug.tag>debug</docker.debug.tag>
<!-- <docker.debug.tag>debug</docker.debug.tag>-->
</properties>

<dependencies>
Expand Down Expand Up @@ -213,22 +213,23 @@
<verbose>true</verbose>
<images>
<image>
<name>existdb/existdb:%v</name>
<name>existdb/existdb</name>
<alias>exist</alias>
<build>
<tags>
<tag>%v</tag>
<tag>${docker.tag}</tag>
</tags>
<dockerFile>${project.build.outputDirectory}/Dockerfile</dockerFile>
<contextDir>${assemble.dir}</contextDir>
</build>
</image>
<image>
<name>existdb/existdb:%v-DEBUG</name>
<name>existdb/existdb:debug</name>
<alias>exist-debug</alias>
<build>
<tags>
<tag>${docker.debug.tag}</tag>
<tag>%v-debug</tag>
</tags>
<dockerFile>${project.build.outputDirectory}/Dockerfile-DEBUG</dockerFile>
<contextDir>${assemble.dir}</contextDir>
Expand Down

0 comments on commit 6d57ed7

Please sign in to comment.