Est. read time: 1 minute | Last updated: July 17, 2024 by John Gentile


Contents

Architectures and design patterns for systems that are data intensive, as well as distributed computing systems.

Software Architecture Models for High-Performance Computing (HPC)

Also see Software Design for Performance.

Virtualization and Containers

Virtual Machines (VM)

Containers

Other Docker commands

  • Restart last container created: docker start $(docker ps -q -l)
    • Reattach terminal & stdin to last: docker attach $(docker ps -q -l)
  • List currently running Docker instances: docker ps -a
  • Stop all containers: docker kill $(docker ps -q)
  • Remove all containers: docker rm $(docker ps -a -q)
  • Remove all docker images: docker rmi $(docker images -q)

References

Cloud

Amazon Web Services (AWS)

References