-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7de5bf
commit 309d84f
Showing
2 changed files
with
40 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[[installation-jar]] | ||
=== JAR installation | ||
|
||
Ontrack can be downloaded as a JAR and started as a JVM application. | ||
|
||
To run Ontrack, you need to make sure that the minimal <<installation-dependencies,dependencies>> are available: | ||
|
||
* Postgres | ||
* Elasticsearch | ||
|
||
[IMPORTANT] | ||
==== | ||
You need a JDK 11 or better to run Ontrack. | ||
==== | ||
|
||
Download the JAR from the | ||
https://github.com/nemerosa/ontrack/releases[Ontrack release page]. | ||
|
||
Start it using: | ||
|
||
[source,bash] | ||
---- | ||
java -jar ontrack.jar | ||
---- | ||
|
||
<<configuration-properties,Options>> can be passed on the command line, either: | ||
|
||
* using system properties: | ||
|
||
[source,bash] | ||
---- | ||
-Dspring.datasource.url=... | ||
---- | ||
|
||
* or environment variables: | ||
|
||
[source,bash] | ||
---- | ||
SPRING_DATASOURCE_URL=... java ... | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters