We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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}
The text was updated successfully, but these errors were encountered: