Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Command-line flag

Notes

1

--name rampiva.automate.scheduler

Name the container rampiva.automate.scheduler

2

-p 81:80

Publish container port 80 to the host port 81

3

-e RAMPIVA_API_KEY=secretKeyGoesHere

Set the API key used to communicate between Rampiva components to secretKeyGoesHere

4

-e RAMPIVA_AUTH_INTERNAL_USERNAME=admin

Set the username to log in with during the initial configuration

5

-e RAMPIVA_AUTH_INTERNAL_PASSWORD=pass

Set the password to log in with during the initial configuration

6

-e RAMPIVA_AUTH_INTERNAL_ENABLED=true

Enable the logging in with the hard-coded username and password

7

-e RAMPIVA_STORE_APPLICATION_CHARSET="UTF-8"

Set the SQL store charset UTF-8

8

-e RAMPIVA_STORE_APPLICATION_DRIVER_CLASS="net.sourceforge.jtds.jdbc.Driver"

Set the SQL JDBC driver

9

-e RAMPIVA_STORE_APPLICATION_USERNAME=azureAdmin

Set the SQL store username azureAdmin

10

-e RAMPIVA_STORE_APPLICATION_PASSWORD="sqlPasswordGoesHere"

Set the SQL store password to sqlPasswordGoesHere

11

-e RAMPIVA_STORE_APPLICATION_URL="jdbc:jtds:sqlserver://rampiva-sql-server.database.windows.net:1433/rampiva-db;ssl=require"

Set the SQL JDBC URL to use the SQL server rampiva-sql-server and the database rampiva-db

12

-e RAMPIVA_STORE_LOGGING_REDIRECT_TO_APPLICATION=true

Use the SQL store to record the Centralized Logging records

13

-e RAMPIVA_STORE_UTILIZATION_REDIRECT_TO_APPLICATION=true

Use the SQL store to record Utilization records

14

-v D:\data:/var/data

Map the host folder D:\data to the container /var/data folder

15

-v D:\cases:/var/cases

Map the host folder D:\cases to the container /var/cases folder

16

-v C:\Temp\logs:/var/log/rampiva

Map the host folder C:\Temp\logs to the container /var/log/rampiva folder

17

-d rampiva/rampiva.automate.scheduler:8.0.0-preview

Use the Scheduler image version 8.0.0-preview

F. Run Rampiva

...

Proxy

Code Block
docker run --name rampiva.automate.proxy -p 81:80 -v %~dp0config\proxy:/etc/rampiva/automate/scheduler/config:ro -d rampiva/rampiva.automate.core:8.0.0-preview /usr/rampiva/runScheduler.sh

...