DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
This is currently work in progress: FINCN-170 - Getting issue details... STATUS INFRA-18516 - Getting issue details... STATUS
How to run fineract-cn public Docker images
There are public repositories in DockerHub for fineract-cn:
| Micro service | Apache URL | Temporary URL for setting up (this column be deleted once the job is completed) |
|---|---|---|
| https://cloud.docker.com/repository/docker/aasaru/fineract-cn-provisioner | ||
Running a micro service public image
TODO - replace "aasaru" with "apache" once the set-up has been completed
docker run aasaru/fineract-cn-provisioner:latest
Or if you want to run specific version
docker run aasaru/fineract-cn-provisioner:version-number-goes-here
You need to generate keys and pass them to docker images as environmental variables. See these instructions.
How the Docker Hub has been set up
Autobuild has been configured for these repositories with following setup:
- pushing to branch "develop" - triggers a build and publishes to "latest"
- tagging a version - triggers a build and publishes it as a only if it matches:
Docker Tag | Source | Comment |
|---|---|---|
| latest | develop | build everything pushed to "develop" branch and publish it under latest tag |
release-{sourceref} | /^REL([0-9.]+)$/ | configured for other rules to work. no build should actually trigger this |
{\1}-{\2} | /^([0-9.]+)-([0-9A-Za-z.]+)$/ | |
{\1}.{\2}.{\3} | /^([0-9]+)\.([0-9]+)\.([0-9]+)$/ | |
{\1}.{\2}.{\3}.{\4} | /^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)$/ |
For autobuild to work the Dockerfile of each has been split into two stages:
- build stage - builds the jar. Only the jar is passed to the run stage.
- run stage - runs the jar