Anybody knows how to nuke everything if I started ...
# ingestion
h
Anybody knows how to nuke everything if I started datahub with a docker-compose file? When I run
datahub docker quickstart
it is easily dropped by
datahub docker nuke
, but how to get the same result if I started it with
docker-compose up -d
?
b
My method erases all things inside docker so be careful: docker-compose down, docker system prune --all Erases ALL images and containers then docker volume prune To erase the volumes
h
I guess that's what I needed, thanks. Though after all that my
docker-compose up -d
is not working 😭 (datahub docker quickstart still works)
b
should be using docker-compose -p datahub -f docker-compose.yml -f docker-compose.override.yml up -d
I think docker compose up -d doesn't bring up all the containers coherently
h
I think it should work, but it failed building datahub-frontend-react, mb it is not stable atm. But after I've used
datahub docker quickstart
and nuked it, the command
docker-compose up -d
started working again. I guess it used some of the pre-build containers.