Now that we have started using docker we are beginning to reach some limits of
our micro EC2 instances. In order to free up some resources you should do the
following:
- Remove all volumes, images, networks, etc., that have been created in
docker up to this point:
docker system prune --all
. This will
free up space on the hard drive for images we'll be using moving forward.
- Shutdown the mysql and apache2 services on your EC2 instance. And to
prevent them from restarting when you do a reboot you can disable them
(e.g.,
systemctl disable apache2
).
Prior to lab day you should watch all the videos this week and follow along
practicing commands on your own server.
Begin working through the instructions given for
Homework #11