This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rancherize.json
64 lines (64 loc) · 1.62 KB
/
rancherize.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"blueprints": {
"webserver": "Rancherize\\Blueprint\\Webserver\\WebserverBlueprint"
},
"blueprint": "webserver",
"default": {
"add-redis": true,
"add-database": false,
"add-version": "SVN_REVISION",
"queues": [
{
"connection": "redis",
"name": "default"
}
],
"rancher": {
"in-service": true,
"account": "your-rancher-account"
},
"docker": {
"account": "docker-account",
"repository": "docker-repository",
"version-prefix": "laravel-indexer-service_",
"base-image": "busybox"
},
"healthcheck": {
"url": "\/healthcheck"
},
"nginx-config": "",
"service-name": "LaravelIndexerService",
"environment": {
"QUEUE_DRIVER": "redis",
"REDIS_HOST": "redis",
"NO_MIGRATE": true,
"NO_SEED": true,
"SENTRY_DSN": "",
"APP_KEY": "base64:WMNa3A7KdAq8NMABeXrQDVZ0tg3BfaV1stkZ5melL6g=",
"SERVICE_SECURE_TOKEN": "vf2AdKzPBqgNne5YA7yfRwWZnj5R43fa"
}
},
"environments": {
"local": {
"debug-image": true,
"sync-user-into-container": true,
"expose-port": 15540,
"use-app-container": false,
"mount-workdir": true,
"default-network":"indexer-service",
"php": "7.0",
"environment": {
"APP_ENV": "local",
"APP_DEBUG": true,
"APP_KEY": "base64:14Bp/oUv0Va4MMdT/cK8rKrypEIrj5MW0dlIbUcSFK0=",
"SOLR_HOST": "my_solr",
"SOLR_PORT": 8983,
"SOLR_PATH": "/solr/",
"SOLR_CORE": "gettingstarted",
"SOLR_USERNAME": "",
"SOLR_PASSWORD": "",
"SOLR_TIMEOUT": 50
}
}
}
}