May 2022 Summaries
2 posts from RunPod
Filter
Month:
Year:
Post Summaries
Back to Blog
Runpod provides a quick way to access a custom pod using its basic terminal access feature, which is compatible with any custom container, regardless of whether it includes an SSH daemon or exposed ports. This method is useful for executing quick terminal commands but has limitations, such as the absence of SCP support, limiting its functionality. Instead of offering true SSH access, it provides a bash shell, and for genuine SSH requirements, users are advised to refer to a specific blog post. The setup process involves creating a key pair, retrieving a public key, copying the SSH key to the server, locating the server address, and executing an SSH command with the private key file in a terminal window.
May 16, 2022
276 words in the original blog post.
Creating a custom Docker container for machine learning can streamline your workflow by allowing you to have a fresh, personalized environment with the right tools every time you start a new project. This blog post guides you through the process of building a Docker image using a base image like tensorflow/tensorflow:latest-gpu, and customizing it with essential utilities and packages such as wget, openssh, pip, and Jupyter Lab. It explains how to automate installations with the Docker RUN command, ensuring these utilities are cached for faster setup in future sessions. The post also covers defining a start command using a script to manage processes like OpenSSH and Jupyter Lab, and provides instructions on building and pushing your Docker image to Docker Hub, where it can be cloned and used as needed. This tutorial offers a foundational understanding of Docker's capabilities in creating efficient and reusable development environments tailored to specific needs.
May 07, 2022
874 words in the original blog post.