Docker: Temporary failure resolving 'deb.debian.org'
问题 I have a Rails application that I want to deploy using Docker on an Ubuntu server. I have the Dockerfile for the application already set up, right now I want to view the nginx conf in its container. I ran the command below to start an nginx container in an interactive mode: docker run -i -t nginx:latest /bin/bash Right now I am trying to install nano editor in order to view the configuration for nginx configuration ( nginx.conf ) using the commands below: apt-get update apt-get install nano