Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu dind docker image

FROM ubuntu

RUN apt-get update && apt-get install -y 
    apt-transport-https 
    ca-certificates 
    curl 
    gnupg 
    lsb-release

RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

RUN echo 
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu 
  $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && apt-get install -y docker-ce docker-ce-cli containerd.io

# install other tools that are required for our build and deployment process.
Comment

PREVIOUS NEXT
Code Example
Shell :: find inodes usage 
Shell :: how to know if therre is somethign to pull 
Shell :: uniq only print unique lines 
Shell :: ARCH_LINUX : /oldroot BUG 
Shell :: install rar, unrar on fedora 
Shell :: output file contents linux 
Shell :: jenkins pipeline for sonarqube 
Shell :: ubuntu uninstall google chrome 
Shell :: fish tab completion color 
Shell :: install lttng for ubuntu 
Shell :: #include <gst/gst.h compilation terminated. jetson nano 
Shell :: fix unable to output headphone audio on linux mint 
Shell :: OPEN ROOT FOLDER IN KLI 
Shell :: ????author signature 
Shell :: how to pass a variable to remote ssh command 
Shell :: amber vmd command line code 
Shell :: how to define a command bash 
Shell :: GThumb is a really nice image viewer with basic editing tools for ubuntu 
Shell :: select all folder except one in command line 
Shell :: run flluter,linux 
Shell :: Prerequisite packages installation for Docker 
Shell :: delete strings after match to eol using sed command 
Shell :: how to make copy of branch in git 
Shell :: how to get description of repositories using pygithub api 
Shell :: groupadd to folder linux fedora 
Shell :: digital assistant 
Shell :: butler push 
Shell :: linux send process to background and close terminal 
Shell :: terminal codes 
Shell :: fslstats center-of-gravity 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =