DeepStack
DeepStack copied to clipboard
Detection End point not activate
I have installed deepstack recently using docker compose V2 here comes the docker file
version: '3.8'
services: deepstack: image: deepquestai/deepstack:latest container_name: deepstack ports: - "5000:5000" # Exposing port 5000 for both internal and external use VISION-FACE:'True' VISION-SCENE:'True environment: - VISION-DETECTION=True - VISION-FACE=True - VISION-SCENE=True volumes: - deepstack_data:/data networks: - my_network
volumes: deepstack_data:
networks: my_network: external: true
When I try to use the endpoint I always get endpoint not activate error.
curl -X POST http://temphome.ddns.net:5000/v1/vision/detection -H "Content-Type: multipart/form-data" -F "image=@/home/rajdey/docker/deepstack/data/DSC04413.JPG"
Error:- {"success":false,"error":"Detection endpoint not activated","duration":0}