On Azure I got an IoT Edge device with some modules (containers) installed in it (it's a Linux machine). Could not find anywhere how I can tell the disk size of those modules. The problem is that some of the modules are deployed remotely by some proprietary software, whose size I cannot know in advance. Question is - how can I tell the size of each module?
Asked
Active
Viewed 190 times
0

Super Kai - Kazuya Ito
- 22,221
- 10
- 124
- 129

Hummus
- 559
- 1
- 9
- 21
-
If my answer helped solve your problem, then please accept/upvote it. This helps others coming here with the same problem. – René Jan 15 '20 at 21:24
1 Answers
1
IotEdge modules are docker containers so you can ssh on your machine and use
sudo docker ps --size
A broader discussion on disk usage of docker containers can be found here: How to analyze disk usage of a Docker container

René
- 3,413
- 2
- 20
- 34