Update 'Deploment/deployment.json'

This commit is contained in:
2022-05-02 04:52:05 +00:00
parent 519b4add57
commit 4bb3a39df7
+14 -2
View File
@@ -45,7 +45,11 @@
"image": "eclipse-mosquitto",
"hostname": "mosquitto",
"restart_policy": "always",
"ports": ["1883:1883/tcp","9001:9001/tcp"]
"ports": ["1883:1883/tcp","9001:9001/tcp"],
"volumes": [
{
"container": "/mosquitto"
} ]
},
@@ -63,7 +67,15 @@
"image": "influxdb",
"hostname": "influxdb",
"restart_policy": "always",
"ports": ["8086:8086/tcp"]
"ports": ["8086:8086/tcp"],
"volumes": [
{
"container": "/var/lib/grafana"
},
{
"container": "/var/lib/influxdb"
}
]
}
]
}