Update 'Deploment/deployment.json'

This commit is contained in:
2022-05-02 05:11:50 +00:00
parent 4bb3a39df7
commit 1bd2b8d148
+43 -17
View File
@@ -14,18 +14,22 @@
"hostname": "grafana", "hostname": "grafana",
"restart_policy": "always", "restart_policy": "always",
"administrator_only": false, "administrator_only": false,
"volumes": [ "image": "grafana/grafana",
{
"container": "/var/lib/grafana"
},
{
"container": "/etc/grafana"
}
],
"ports": [ "ports": [
"3000:3000/tcp" "3000:3000/tcp"
], ],
"image": "grafana/grafana", "volumes": [
{
"container": "/var/lib/grafana",
"bind": "/srv/grafana.bit.lan/data",
"readonly": false
},
{
"container": "/etc/grafana",
"bind": "/srv/grafana.bit.lan/conf",
"readonly": false
}
],
"labels": [ "labels": [
{ "name": "com.centurylinklabs.watchtower.enable", "value": "true" } { "name": "com.centurylinklabs.watchtower.enable", "value": "true" }
] ]
@@ -48,8 +52,26 @@
"ports": ["1883:1883/tcp","9001:9001/tcp"], "ports": ["1883:1883/tcp","9001:9001/tcp"],
"volumes": [ "volumes": [
{ {
"container": "/mosquitto" "container": "/mosquitto/data",
} ] "bind": "/srv/mosquitto.bit.lan/docker/data",
"readonly": false
},
{
"container": "/mosquitto/config",
"bind": "/srv/mosquitto.bit.lan/docker/config",
"readonly": false
}
,
{
"container": "/mosquitto/log",
"bind": "/srv/mosquitto.bit.lan/docker/log",
"readonly": false
}
],
"labels": [
{ "name": "com.centurylinklabs.watchtower.enable", "value": "true" }
]
}, },
@@ -68,14 +90,18 @@
"hostname": "influxdb", "hostname": "influxdb",
"restart_policy": "always", "restart_policy": "always",
"ports": ["8086:8086/tcp"], "ports": ["8086:8086/tcp"],
"volumes": [ "volumes": [
{ {
"container": "/var/lib/grafana" "container": "/var/lib/influxdb2",
}, "bind": "/srv/influxdb.bit.lan/data",
{ "readonly": false
"container": "/var/lib/influxdb"
} }
] ],
"labels": [
{ "name": "com.centurylinklabs.watchtower.enable", "value": "true" }
]
}
]
} }
] ]
} }