[Bug]: 5.13.30.8 won't start (older than last version executed) but LAST_RAN_OMADA_VER.txt doesn't exist #478
-
Controller VersionNo main screen or container logs to find this number Describe the BugI initially pulled the "latest" tag but it won't start due to the dependency resolution issue documented elsewhere. I deleted the container and the image, and pulled 5.13.30.8. Now the image refuses to start, with:
However, I'm an experienced developer but Docker newbie. Expected BehaviorContainer starts up Steps to ReproduceAs described above How You're Launching the Container
Container Logs
MongoDB Logs
Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
That path it is referring to is in your volume: If you have configured the controller, then you need to remove the file in the volume. One way without finding where Docker is storing that directory on your host is to run a container with the data mounted and then start a shell so you can remove the file.
From here, you should be able to list and remove the file. |
Beta Was this translation helpful? Give feedback.
-
Ah, that was the missing part (persistent storage outside images), thank you. Still learning docker :-) |
Beta Was this translation helpful? Give feedback.
That path it is referring to is in your volume:
omada-data
. At some point, you had started, or attempted to start, version5.14.26.1
. I am not sure if you have an existing controller setup that exists in your persistent data or not. If you have not configured the controller and are wanting to start from scratch, you can remove the volumesdocker volume rm omada-data
,docker volume rm omada-logs
and run the container again.If you have configured the controller, then you need to remove the file in the volume. One way without finding where Docker is storing that directory on your host is to run a container with the data mounted and then start a shell so you can remove the file.
docker run -…