The quickest way to run the latest release of the UPS is running it Docker image.
But this still requires a few commands, to launch the required DB and the server itself. To fasten the process cd
into this folder and use our Docker Compose files:
Compose File Version | Docker Engine Version |
---|---|
docker-compose-v2.1.yaml | 1.12.0+ |
docker-compose -f docker-compose-v2.1.yaml up -d
This fires up all the components you need and finally launches the UPS at: http:DOCKER_IP:9999/ag-push
in the servers
directory we have two different flavors of the UPS:
plain
: Just UPS, with H2 in-memory databasekeycloak
: UPS and Keycloak, both using H2 in-memory database
During the build of the project the aerogear/ups:plain
is build. Afterwards, simply run it like:
docker run -p 18081:8080 -it aerogear/ups:plain
This brings the UPS containers. Now, go to http://localhost:18081/
and you can use it right away!
During the build of the project the aerogear/ups:kc
is build. Afterwards, simply run it like:
docker run -p 8080:8080 -it aerogear/ups:kc
This brings up both, Keycloak and the UPS containers. Now, go to http://localhost:8080/
to login to the UPS!
It might be handy to just run Keycloak in a Linux container, like:
docker-compose -f keycloak-standalone.yaml up -d