I've followed the instructions on https://hub.docker.com/_/ghost/ and created a container with a volume as such
docker run -d --name some-ghost -e NODE_ENV=development -v some-ghost-data:/var/lib/ghost/content ghost
Later on, I deleted the container to do some changes understanding that the volume has my data saved under the "/data" folder, but that is empty.
When I created the container again, all tables were recreated and all the data was gone.
Did I get something wrong?
I've followed the instructions on https://hub.docker.com/_/ghost/ and created a container with a volume as such
docker run -d --name some-ghost -e NODE_ENV=development -v some-ghost-data:/var/lib/ghost/content ghostLater on, I deleted the container to do some changes understanding that the volume has my data saved under the "/data" folder, but that is empty.
When I created the container again, all tables were recreated and all the data was gone.
Did I get something wrong?