I have the dronedb/server:latest
image running on my NAS. I logged in using the default account and it all seems to be working. At least, I see the list of Projects with an empty project called storage
.
I have a pile of directories of images and video from previous drone flights that I’d like to import, but I don’t see anything for doing that.
The “Create Dataset” button on the projects page throws the error Failed to create dataset: Not found
. Clicking on the storage
project yields a page that doesn’t have any obvious upload button. I’m sure I’m missing the obvious, but what is it?
Pro tip for anyone doing this on a Synology NAS: port 5000 is used by DSM, so make sure you use a different port for the container.
FWIW, here’s the docker compose file that I used:
version: "3"
volumes:
data:
driver: local
system:
driver: local
services:
dronedb:
image: dronedb/server:latest
volumes:
- data:/storage
- system:/.ddb-server
restart: unless-stopped
ports:
- 7000:5000
command: ["--hub-name", "your_hub_name"]