

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Volumes
incomplete
2: Run Ghost
incomplete
3: Creating a Website
incomplete
4: Persist
incomplete
5: Persist Quiz
incomplete
6: Delete a Volume
incomplete
7: Clean Up
incomplete
This lesson's interactive features are locked, please to keep using them
Let's make sure our volume is working by starting a new container. If it's working, our new container will still serve the post we created because it will load it from the volume.
docker ps
docker stop CONTAINER_ID
docker rm CONTAINER_ID
docker run -d -e NODE_ENV=development -e url=http://localhost:3001 -p 3001:2368 -v ghost-vol:/var/lib/ghost ghost
Refresh your webpage and see if your site is still there. If it is, your volume is working as intended!
Run and submit the CLI tests.