commit | 6118e6bbd413cd1ba6391af726b56f0262c47250 | [log] [tgz] |
---|---|---|
author | Alex Heneveld <git@alex.heneveld.org> | Fri Aug 30 14:09:26 2024 +0100 |
committer | Alex Heneveld <git@alex.heneveld.org> | Fri Aug 30 14:09:26 2024 +0100 |
tree | eef461770f6da518cdfc51a2d0b66b8232a22a4d | |
parent | 9b01234b667bcb7f8c7e2ff9458522236ea2ad22 [diff] |
Test and fix for persisting after importing
This repo contains the core elements to run a Brooklyn server, from the API and utils through to the core implementation and the REST server.
Two methods are available to build this project: within a docker container or directly with maven.
The project comes with a Dockerfile
that contains everything you need to build this project. First, build the docker image:
docker build -t brooklyn:server .
Then run the build:
docker run -i --rm --name brooklyn-server -v ${HOME}/.m2:/root/.m2 -v ${PWD}:/usr/build -w /usr/build brooklyn:server mvn clean install
Simply run:
mvn clean install