-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswarm.json
26 lines (26 loc) · 847 Bytes
/
swarm.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
{
"app_name": "symfony",
"services": [
{
"service_name": "webapp",
"components": [
{
"component_name": "fpm",
"image": "registry.giantswarm.io/seiffert/symfony-fpm",
"ports": [ "9000/tcp" ],
"scaling_policy": {"min": 3}
},
{
"component_name": "nginx",
"image": "registry.giantswarm.io/seiffert/symfony-nginx",
"ports": [ "80/tcp" ],
"dependencies": [
{ "name": "fpm", "port": 9000 }
],
"scaling_policy": {"min": 3},
"domains": { "symfony.alpha.gigantic.io": "80" }
}
]
}
]
}