🚩🟨🚩 This repository has been moved to everything-web-scraping 🚩🟨🚩
If you found an outdated link to this that I can update, file an issue :)
If you found an outdated link to this that I can update, file an issue :)
Learn everything web scraping by David Teather find the video series on YouTube.
Glad you're here! If it's your first time check out the the introduction, if not welcome back!
Consider sponsoring me on GitHub to make work like this possible
Run docker-compose up
while in a lesson directory, when it says development server started open localhost:3000
in your browser to check that it's working properly.
When done with this lesson you can control + c
to shut down your docker containers.
- Navigate to the containers tab on the side, find the lesson you want to delete and click the trashcan icon to remove it.
- Navigate to the images tab on the side, find the images starting with the course name to delete and hit the trash can.
- To remove containers,
docker rm $(docker ps -a -q --filter name=XXX)
, where XXX is the lesson number you want removed (ex: 001). - To remove images,
docker rmi $(docker images --filter label=lesson.number=X -a -q)
, where X is the number you want removed (ex: 1, ex: 10)