Where can I find Projects that I created in my Local computer
anujpriya
Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 1 ✭✭✭
I am using DataIKU through docker container image, and created project , but whenever I reopen my dataiku host I cannot see my previously created project, it is plain canvas again.
Kindly help how can I retain, or find them in my local machine
Tagged:
Answers
-
Alexandru Dataiker, Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 1,226 Dataiker
Hi,
To persist your docker storage you will need to create a volume and mount when starting DSS https://docs.docker.com/storage/volumes/
https://hub.docker.com/r/dataiku/dss/
See the example show:
docker run -p 10000:10000 -v my-volume:/home/dataiku/dss -d dataiku/dss
Where my-volume is the volume you create, and dataiku/dss is the image tag.
You can re-tag imags if needed using: docker tag image-id tag/version
Let me know if that helps!