You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
95ae357c37c1 opendronemap/webodm_webapp "/bin/bash -c 'chmod…" 24 hours ago Up 24 hours 0.0.0.0:8000->8000/tcp webapp
bed43950b21b opendronemap/webodm_webapp "/bin/bash -c '/webo…" 24 hours ago Up 24 hours worker
3f21e4ef1007 redis "docker-entrypoint.s…" 24 hours ago Up 24 hours 6379/tcp broker
839eb5925a60 opendronemap/nodeodm "/usr/bin/nodejs /va…" 24 hours ago Up 24 hours 0.0.0.0:32772->3000/tcp webodm_node-odm_1
d964227ea525 opendronemap/webodm_db "docker-entrypoint.s…" 24 hours ago Up 24 hours 0.0.0.0:32773->5432/tcp db
Using docker inspect, we can see nodeodm and webodm_db are both implicated, but that nodeodm looks to be to blame:
How can we reproduce this? (What steps did you do to trigger the problem? What parameters are you using for processing? Please include multiple screenshots of the problem! If possible please include a copy of your dataset uploaded on Google Drive or Dropbox. Be detailed)
Process some images and observe the resource usage of nodeodm. This issue shows how to do that if you are using overlay2
The text was updated successfully, but these errors were encountered:
A docker system prune might help free disk space. If one is worried about space, the correct fix here would be to volume mount /var/www/data from the nodeodm container onto a path on the host. I don't think this is something that WebODM should do, however, because there's no good cross-platform way to do it without possibly hindering performance (Windows).
What's your browser and operating system? (Copy/paste the output of https://www.whatismybrowser.com/)
Chrome 69 on Linux
What is the problem?
nodeodm consumes /var/lib/docker
In my overlay2 dir, one of the entries is 20GB:
This was after processing 150 images.
Now to identify the container causing this:
Using docker inspect, we can see nodeodm and webodm_db are both implicated, but that nodeodm looks to be to blame:
See also #776
How can we reproduce this? (What steps did you do to trigger the problem? What parameters are you using for processing? Please include multiple screenshots of the problem! If possible please include a copy of your dataset uploaded on Google Drive or Dropbox. Be detailed)
Process some images and observe the resource usage of nodeodm. This issue shows how to do that if you are using overlay2
The text was updated successfully, but these errors were encountered: