In Docker/server mode, /mnt/models (per my docker compose) is a valid mounted path and scans successfully, but the STL Home setting does not persist after saving. The UI appears to expect a UNC/network-style path even though the Docker documentation explicitly shows /mnt/models.
My compose file for reference
services:
printventory:
image: printventory/printventory:latest
environment:
TZ: America/Winnipeg
deploy:
placement:
constraints:
- node.role == worker
mode: replicated
replicas: 1
networks:
- network
- npm_proxy_network
expose:
- 5000
volumes:
# Persistent application data
- /docker_shared_storage/printventory/config:/root/.config/printventory
- /docker_shared_storage/printventory/models:/mnt/models
networks:
network:
driver: overlay
npm_proxy_network:
external: true
In Docker/server mode, /mnt/models (per my docker compose) is a valid mounted path and scans successfully, but the STL Home setting does not persist after saving. The UI appears to expect a UNC/network-style path even though the Docker documentation explicitly shows /mnt/models.
My compose file for reference