# dozmod-server - Server to manage virtual machine images ## Build ### Java package The dozmod-server can be built as a Java archive (.jar) using the following command line call: ```shell mvn package ``` The built package can be found at `target/dozmod-server-*-jar-with-dependencies.jar`. ### Docker container A docker image of the dozmod-server and its required infrastructure can be built and started with the following command line call: ```shell mvn -P dozmod-server:start ``` Note that a complete Docker infrastructure (images, containers, networks and volumes) is created and started after this call. To stop the dozmod-server container and its entire infrastructure, use the following command line call: The running containers can be stopped with the following command line call: ```shell mvn -P dozmod-server:stop ```