Damien Katz recently caused a stir on a bunch of the blogs I read with his post entitled REST, I just don't get it where he wrote As the guy who created ...
Claire Keane
we're not kids anymore.
ojovivo
Jules of Nature
PUT YOUR BEARD IN MY MOUTH
taylor price
I'd rather be in outer space 🛸

Origami Around
hello vonnie
Misplaced Lens Cap
sheepfilms

roma★

★
h
One Nice Bug Per Day

Kaledo Art

oozey mess

pixel skylines

ellievsbear

seen from United States
seen from Austria

seen from Germany

seen from Argentina
seen from Germany
seen from Australia
seen from Germany
seen from Barbados

seen from United States
seen from Malaysia

seen from United States

seen from South Africa

seen from United States

seen from T1

seen from Malaysia
seen from Australia

seen from Finland

seen from United Kingdom
seen from United States
seen from United States
@aikmeng80
Damien Katz recently caused a stir on a bunch of the blogs I read with his post entitled REST, I just don't get it where he wrote As the guy who created ...

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Why Chrome 53 is Rejecting Chase Bank's Symantec Certificate - SSLMate Blog
Overview On July 20, 2016 we experienced a 34 minute outage starting at 14:44 UTC. It took 10 minutes to identify the cause, 14 minutes to write the code to fix it, and 10 minutes to roll out the fix...

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
When creating docker image using docker file, have you seen this error?
debconf: unable to initialize frontend: Dialog debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7, <> line 19.) debconf: falling back to frontend: Teletype dpkg-preconfigure: unable to re-open stdin:
With reference to this link, adding the following line in docker file does not work for me.
ENV DEBIAN_FRONTEND noninteractive
Instead, in the same link, this command works for me.
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
This need to run ahead of apt-get. For example,
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \ Â Â Â
&& sudo apt-get update -y \ Â Â Â
&& sudo apt-get install -y \ Â Â Â Â
gcc \ Â Â Â Â
g++ \ Â Â Â Â
zlib1g-dev \ Â Â Â Â
libncurses5-dev \ Â Â Â Â
libcurl4-openssl-dev \ Â Â Â Â
libxml2-dev \ Â Â Â Â
libfreetype6-dev \ Â Â Â Â
libxft-dev \ Â Â Â Â
python-pip \ Â Â Â Â
python-dev \ Â Â Â Â
wget \ Â Â Â
&& apt-get clean \ Â Â Â
&& rm -rf /var/lib/apt/lists/*
Also, by running the entire apt-get in a single stream, this ensure docker daemon not to cache the output. This is mentioned in the best practice page. Also, apt-get clean and apt folder removal will shrink the docker image file.
Beginner’s Guide to Docker Command Line - Navigate docker environment
Below are some of the commands I used quite often
List docker-machines and check docker-machine status.
docker-machine ls
Always check if docker-machine is running before running any further docker commands.
Once the docker-machine is running, connect the terminal to docker-machine
eval "$(docker-machine env default)"
Show all docker containers against current docker-machine. This includes containers that have exited or stopped. This allows us to check which container is running which image as well.
docker ps -a
Show all docker images. This allows us to check docker image tag, docker image size and date of creation
docker images
Create docker container with specific docker image. Probably will map to a drive so that the host machine can connect to docker container easier. In command below, ubuntu is the image name, 14.04 is the tag version. This command will switch the terminal to container terminal.Â
docker run -ti -v $HOME/host/mapdrive:/usr/local/container/mapdrive --name containername ubuntu:14.04
To remove all running or exited containers
docker ps -aq | xargs docker rm
To remove all images in host machine
docker images -q | xargs docker rmi
Need bash access or command line access to docker container?
docker exec -it containerName bash
Refer to this link for further details.