forked from cytomine/Cytomine-software-router
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.groovy
36 lines (28 loc) · 1.17 KB
/
config.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// RabbitMQ Cytomine user (must be super admin)
cytomine.core.url = "http://localhost-core"
cytomine.core.publicKey = "VWX"
cytomine.core.privateKey = "STU"
rabbitmq.host = "rabbitmq"
rabbitmq.port = "5672"
rabbitmq.username = "router"
rabbitmq.password = "router"
cytomine.software.communication.exchange = "exchangeCommunication"
cytomine.software.communication.queue = "queueCommunication"
cytomine.software.path.jobs = "/data/jobs"
cytomine.software.path.softwareSources = "/data/softwares/code"
cytomine.software.path.softwareImages = "/data/softwares/images"
cytomine.software.sshKeysFile = "/data/ssh/id_rsa"
cytomine.software.descriptorFile = "descriptor.json"
cytomine.software.ssh.maxRetries = 3
cytomine.core.connectionRetries = 20
cytomine.software.allowDockerfileCompilation = true
// In seconds
cytomine.software.repositoryManagerRefreshRate = 3600
cytomine.software.job.logRefreshRate = 15
cytomine.software.pullingCheckRefreshRate = 20
cytomine.software.pullingCheckTimeout = 1800
cytomine.core.connectionRefreshRate = 30
cytomine.software.github.username=""
cytomine.software.github.token=""
cytomine.software.dockerhub.username=""
cytomine.software.dockerhub.password=""