Frequently Asked Questions
Is DeployModel RGPD compliant?
Absolutely, DeployModel is fully RGPD compliant. You can ask for a copy of your data or the deletion of it at contact@deploymodel.com
I get an error about PYTHONPATH
not set when trying to push my image
This happens when you do not properly set your PYTHONPATH
inside your Dockerfile
. Make sure you include the following line:
PYTHONPATH=/app
where /app
needs to be the directory such that your python imports will properly work.
I get a ReadTimeout
while trying to push my image
In case your Docker images are very big, you could run into the following error while running deploymodel push
command:
ReadTimeout: UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60)
In that case, you can try to increase the timeout using the --timeout
option as such:
deploymodel push --timeout 1200 [rest of the command]
The default is timeout=600
.