...
Code Block |
---|
docker run --name rampiva.-automate.-scheduler -p 81:80 -e RAMPIVA_API_KEY=secretKeyGoesHere -e RAMPIVA_AUTH_INTERNAL_USERNAME=admin -e RAMPIVA_AUTH_INTERNAL_PASSWORD=pass -e RAMPIVA_AUTH_INTERNAL_ENABLED=true -v D:\data:/var/data -v D:\cases:/var/cases -v C:\Temp\logs:/var/log/rampiva -d rampivanuix/rampiva.-automate.-scheduler:8.0.0-preview |
Command-line flag | Notes | |
---|---|---|
1 |
| Name the container |
2 |
| Publish container port |
3 |
| Set the API key used to communicate between Rampiva components to |
4 |
| Set the username to log in with during the initial configuration |
5 |
| Set the password to log in with during the initial configuration |
6 |
| Enable the logging in with the hard-coded username and password |
7 |
| Map the host folder |
8 |
| Map the host folder |
9 |
| Map the host folder |
10 |
| Use the Scheduler image version |
...
Code Block |
---|
docker run --name rampiva.-automate.-engine-server -p 8080:80 -e RAMPIVA_API_KEY=secretKeyGoesHere -v D:\data:/var/data -v D:\cases:/var/cases -v C:\Temp\logs:/var/log/rampiva --ulimit nofile=10000:10000 -d rampivanuix/rampiva.-automate.-engine-server-nuix:8.0.0-preview_a.b.c.d |
Command-line flag | Notes | |||
---|---|---|---|---|
1 |
| Name the container | ||
2 |
| Publish container port
| ||
3 |
| Set the API key used to communicate between Rampiva components to | ||
4 |
| Map the host folder | ||
5 |
| Map the host folder | ||
6 |
| Map the host folder | ||
7 |
| Increase the number of descriptors allowed per process, required for the Nuix Engine. | ||
8 |
| Use the Engine Server image version |
...
Code Block |
---|
docker run --name rampiva.-automate.-engine-server -p 8080:80 -e RAMPIVA_API_KEY=secretKeyGoesHere -v C:\Temp\logs:/var/log/rampiva -d rampivanuix/rampiva.-automate.-engine-server:8.0.0-preview |
Command-line flag | Notes | |||
---|---|---|---|---|
1 |
| Name the container | ||
2 |
| Publish container port
| ||
3 |
| Set the API key used to communicate between Rampiva components to | ||
4 |
| Map the host folder | ||
5 |
| Use the Engine Server image version |
...
Code Block |
---|
docker run --name rampiva.-automate.-aio -p 80:80 -e RAMPIVA_AUTH_INTERNAL_USERNAME=admin -e RAMPIVA_AUTH_INTERNAL_PASSWORD=pass -e RAMPIVA_AUTH_INTERNAL_ENABLED=true -d rampivanuix/rampiva.-automate.-aio:8.0.0-preview |
Command-line flag | Notes | |
---|---|---|
1 |
| Name the container |
2 |
| Publish container port |
3 |
| Set the username to log in with during the initial configuration |
4 |
| Set the password to log in with during the initial configuration |
5 |
| Enable the logging in with the hard-coded username and password |
6 |
| Use the AIO image version |
...
Code Block |
---|
docker run --name rampiva.-automate.-scheduler -p 81:80 -e RAMPIVA_API_KEY=secretKeyGoesHere -e RAMPIVA_AUTH_INTERNAL_USERNAME=admin -e RAMPIVA_AUTH_INTERNAL_PASSWORD=pass -e RAMPIVA_AUTH_INTERNAL_ENABLED=true -e RAMPIVA_STORE_APPLICATION_CHARSET="UTF-8" -e RAMPIVA_STORE_APPLICATION_DRIVER_CLASS="net.sourceforge.jtds.jdbc.Driver" -e RAMPIVA_STORE_APPLICATION_USERNAME=azureAdmin -e RAMPIVA_STORE_APPLICATION_PASSWORD="sqlPasswordGoesHere" -e RAMPIVA_STORE_APPLICATION_URL="jdbc:jtds:sqlserver://rampiva-sql-server.database.windows.net:1433/rampiva-db;ssl=require" -e RAMPIVA_STORE_LOGGING_REDIRECT_TO_APPLICATION=true -e RAMPIVA_STORE_UTILIZATION_REDIRECT_TO_APPLICATION=true -v D:\data:/var/data -v D:\cases:/var/cases -v C:\Temp\logs:/var/log/rampiva -d rampivanuix/rampiva.-automate.-scheduler:8.0.0-preview |
Command-line flag | Notes | |
---|---|---|
1 |
| Name the container |
2 |
| Publish container port |
3 |
| Set the API key used to communicate between Rampiva components to |
4 |
| Set the username to log in with during the initial configuration |
5 |
| Set the password to log in with during the initial configuration |
6 |
| Enable the logging in with the hard-coded username and password |
7 |
| Set the SQL store charset |
8 |
| Set the SQL JDBC driver |
9 |
| Set the SQL store username |
10 |
| Set the SQL store password to |
11 |
| Set the SQL JDBC URL to use the SQL server |
12 |
| Use the SQL store to record the Centralized Logging records |
13 |
| Use the SQL store to record Utilization records |
14 |
| Map the host folder |
15 |
| Map the host folder |
16 |
| Map the host folder |
17 |
| Use the Scheduler image version |
...
Code Block |
---|
docker run --name rampiva.automate.proxy -p 81:80 -v %~dp0configC:\Sample\config\proxy:/etc/rampiva/automate/scheduler/config:ro -d rampivanuix/rampiva.-automate.-core:8.0.0-preview /usr/rampiva/runScheduler.sh |
Command-line flag | Notes | |||
---|---|---|---|---|
1 |
| Name the container | ||
2 |
| Publish container port | ||
3 |
| Map the host folder
| ||
4 |
| Use the Core image version | ||
5 |
| Run the command |
...