Sync dev stack

This commit is contained in:
2026-03-10 21:11:49 -06:00
parent c18ef16ef6
commit 8cb80d8ada
2 changed files with 172 additions and 0 deletions

18
pom.xml
View File

@@ -117,6 +117,24 @@
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>docker-up</id>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>docker</executable>
<arguments>
<argument>compose</argument>
<argument>-f</argument>
<argument>docker-compose.dev.yml</argument>
<argument>up</argument>
<argument>-d</argument>
<argument>--wait</argument>
<argument>db</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>docker-down</id>
<goals>