Docker Quick Start Guide : Learn Docker Like a Boss, and Finally Own Your Applications.
Docker is an open source software platform that helps you with creating, deploying, and running your applications using containers. This book is your ideal introduction to Docker and containerization.
Clasificación: | Libro Electrónico |
---|---|
Autor principal: | |
Formato: | Electrónico eBook |
Idioma: | Inglés |
Publicado: |
Birmingham :
Packt Publishing Ltd,
2018.
|
Temas: | |
Acceso en línea: | Texto completo |
Tabla de Contenidos:
- Cover; Title Page; Copyright and Credits; Dedication; About Packt; Foreword; Contributors; Table of Contents; Preface; Chapter 1: Setting up a Docker Development Environment; Technical requirements; Setting up your Docker development environment; Installing Docker on a Linux workstation; Installing Docker on a CentOS workstation; Installing Docker CE via the Docker Repository; Installing Docker CE manually using a downloaded RPM; Installing Docker CE by running convenience scripts; Post-install steps you might want to consider; Installing Docker on an Ubuntu workstation
- Installing Docker CE via the Docker RepositoryInstalling Docker CE manually using a DEB package; Installing Docker CE by running convenience scripts; Post-install steps you might want to consider; Installing Docker on a Windows workstation; Post-install steps you might want to consider; Installing Kitematic; Setting up DockerCompletion for PowerShell ; Installing Docker on an OS X workstation; Post-install steps you might want to consider; Installing Kitematic; Installing Docker command-line completion; References; What differences to watch out for between OSes; Summary; References
- Chapter 2: Learning Docker CommandsTechnical requirements; Information about command syntax; The version command; The Docker run command; The list container command; The remove container command; The stop container command; The container logs command; The container top command; The container inspect command; The container stats command; The container attach command; The container exec command; The container commit command; Back to the Docker run command; Summary; References; Chapter 3: Creating Docker Images; Technical requirements; What is a Dockerfile?; The FROM instruction
- The LABEL instructionThe COPY instruction; The ADD instruction; The difference between COPY and ADD; The ENV instruction; The ARG instruction; The difference between ENV and ARG; The USER instruction; The WORKDIR instruction; The VOLUME instruction; The EXPOSE instruction; The RUN instruction; The CMD instruction; The ENTRYPOINT instruction; The difference between CMD and ENTRYPOINT; The HEALTHCHECK instruction; The ONBUILD instruction; The STOPSIGNAL instruction; The SHELL instruction; The Docker image build command; Parser Directives; The build context; The .dockerignore file; Summary