Docker : up and running / Karl Matthias and Sean P. Kane.
Updated to cover Docker version 1.10 Docker is quickly changing the way that organizations are deploying software at scale. But understanding how Linux containers fit into your workflow--and getting the integration details right--are not trivial tasks. With this practical guide, you'll learn ho...
Saved in:
Online Access: |
Full Text (via O'Reilly/Safari) |
---|---|
Main Authors: | , |
Format: | eBook |
Language: | English |
Published: |
Sebastopol, CA :
O'Reilly,
2015.
|
Edition: | First edition. |
Subjects: |
MARC
LEADER | 00000cam a2200000 i 4500 | ||
---|---|---|---|
001 | b10296937 | ||
006 | m o d | ||
007 | cr ||||||||||| | ||
008 | 150615s2015 caua o 001 0 eng d | ||
005 | 20240829145251.8 | ||
019 | |a 911517919 |a 968091507 |a 969058934 |a 1171446604 |a 1193554219 |a 1206231241 |a 1391406432 | ||
020 | |a 9781491918524 |q (electronic bk.) | ||
020 | |a 1491918527 |q (electronic bk.) | ||
020 | |a 9781491918517 |q (electronic bk.) | ||
020 | |a 1491918519 |q (electronic bk.) | ||
020 | |a 9781491917565 | ||
020 | |a 1491917563 | ||
020 | |a 1491917571 | ||
020 | |a 9781491917572 | ||
020 | |z 9781491917572 | ||
029 | 1 | |a AU@ |b 000067108010 | |
029 | 1 | |a CHNEW |b 000704883 | |
029 | 1 | |a CHVBK |b 353802921 | |
029 | 1 | |a DEBBG |b BV042683772 | |
029 | 1 | |a DEBSZ |b 446589810 | |
029 | 1 | |a GBVCP |b 832158127 | |
029 | 1 | |a AU@ |b 000056947349 | |
029 | 1 | |a AU@ |b 000076513337 | |
035 | |a (OCoLC)safo911032847 | ||
035 | |a (OCoLC)911032847 |z (OCoLC)911517919 |z (OCoLC)968091507 |z (OCoLC)969058934 |z (OCoLC)1171446604 |z (OCoLC)1193554219 |z (OCoLC)1206231241 |z (OCoLC)1391406432 | ||
037 | |a safo9781491917565 | ||
040 | |a N$T |b eng |e rda |e pn |c N$T |d N$T |d UMI |d TEFOD |d DEBBG |d YDXCP |d IDEBK |d COO |d TEFOD |d DEBSZ |d CDX |d EBLCP |d CHVBK |d FEM |d OCLCQ |d VT2 |d HCO |d OCLCF |d OCLCO |d CEF |d WYU |d UAB |d AU@ |d UKAHL |d RDF |d OCLCA |d OCLCQ |d OCLCA |d MM9 |d EZ9 |d OCLCO |d OCLCQ |d INARC |d OCLCO |d OCLCL | ||
049 | |a GWRE | ||
050 | 4 | |a QA76.76.O62 | |
100 | 1 | |a Matthias, Karl, |e author. | |
245 | 1 | 0 | |a Docker : |b up and running / |c Karl Matthias and Sean P. Kane. |
250 | |a First edition. | ||
264 | 1 | |a Sebastopol, CA : |b O'Reilly, |c 2015. | |
300 | |a 1 online resource : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a volume |b nc |2 rdacarrier | ||
347 | |a text file | ||
500 | |a Includes index. | ||
588 | 0 | |a Vendor-supplied metadata. | |
520 | |a Updated to cover Docker version 1.10 Docker is quickly changing the way that organizations are deploying software at scale. But understanding how Linux containers fit into your workflow--and getting the integration details right--are not trivial tasks. With this practical guide, you'll learn how to use Docker to package your applications with all of their dependencies, and then test, ship, scale, and support your containers in production. Two Lead Site Reliability Engineers at New Relic share much of what they have learned from using Docker in production since shortly after its initial release. Their goal is to help you reap the benefits of this technology while avoiding the many setbacks they experienced. Learn how Docker simplifies dependency management and deployment workflow for your applications Start working with Docker images, containers, and command line tools Use practical techniques to deploy and test Docker-based Linux containers in production Debug containers by understanding their composition and internal processes Deploy production containers at scale inside your data center or cloud environment Explore advanced Docker topics, including deployment tools, networking, orchestration, security, and configuration. | ||
505 | 0 | |a Copyright -- Table of Contents -- Foreword -- Preface -- Who Should Read This Book -- Why Read This Book? -- Navigating This Book -- Conventions Used in This Book -- Safari® Books Online -- How to Contact Us -- Acknowledgments -- Chapter 1. Introduction -- The Birth of Docker -- The Promise of Docker -- Benefits of the Docker Workflow -- What Docker Isn't -- Chapter 2. Docker at a Glance -- Process Simplification -- Broad Support and Adoption -- Architecture -- Client/Server Model -- Network Ports and Unix Sockets -- Robust Tooling | |
505 | 8 | |a Docker Command-Line ToolApplication Programming Interface (API) -- Container Networking -- Getting the Most from Docker -- Containers Are Not Virtual Machines -- Containers Are Lightweight -- Towards an Immutable Infrastructure -- Limited Isolation -- Stateless Applications -- Externalizing State -- The Docker Workflow -- Revision Control -- Building -- Testing -- Packaging -- Deploying -- The Docker Ecosystem -- Wrap-Up -- Chapter 3. Installing Docker -- Important Terminology -- Docker Client -- Linux -- Mac OS X 10.10 | |
505 | 8 | |a Microsoft Windows 8Docker Server -- Systemd-Based Linux -- Upstart-Based Linux -- init.d-Based Linux -- Non-Linux VM-Based Server -- Test the Setup -- Ubuntu -- Fedora -- CentOS -- Wrap-Up -- Chapter 4. Working with Docker Images -- Anatomy of a Dockerfile -- Building an Image -- Running Your Image -- Environment Variables -- Custom Base Images -- Storing Images -- Public Registries -- Private Registries -- Authenticating to a Registry -- Mirroring a Registry -- Other Approaches to Image Delivery -- Chapter 5. Working with Docker Containers | |
505 | 8 | |a What Are Containers?History of Containers -- Creating a Container -- Basic Configuration -- Storage Volumes -- Resource Quotas -- Starting a Container -- Auto-Restarting a Container -- Stopping a Container -- Killing a Container -- Pausing and Unpausing a Container -- Cleaning Up Containers and Images -- Next Steps -- Chapter 6. Exploring Dockert -- Printing the Docker Version -- Server Information -- Downloading Image Updates -- Inspecting a Container -- Getting Inside a Running Container -- docker exec -- nsenter -- Exploring the Shell | |
505 | 8 | |a Returning a ResultDocker Logs -- Monitoring Docker -- Container Stats -- Docker Events -- cAdvisor -- Exploration -- Chapter 7. The Path to Production Containers -- Deploying -- Classes of Tooling -- Orchestration Tools -- Distributed Schedulers -- Deployment Wrap-Up -- Testing Containers -- Quick Overview -- Outside Dependencies -- Chapter 8. Debugging Containers -- Process Output -- Process Inspection -- Controlling Processes -- Network Inspection -- Image History -- Inspecting a Container -- Filesystem Inspection -- Moving Along | |
650 | 0 | |a Open source software. | |
650 | 0 | |a Application software |x Development |x Automation. | |
650 | 0 | |a Virtual computer systems. | |
650 | 0 | |a Computer software |x Development. | |
650 | 0 | |a Linux device drivers (Computer programs) | |
650 | 7 | |a Computer software |x Development |2 fast | |
650 | 7 | |a Linux device drivers (Computer programs) |2 fast | |
650 | 7 | |a Open source software |2 fast | |
650 | 7 | |a Virtual computer systems |2 fast | |
700 | 1 | |a Kane, Sean P., |e author. | |
758 | |i has work: |a Docker (Text) |1 https://id.oclc.org/worldcat/entity/E39PCGHxMCYxwkV4d88HjdCyBd |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Matthias, Karl. |t Docker : up and running. |b First edition. |d Sebastopol, California : O'Reilly, ©2015 |h xx, 198 pages |z 9781491917572 |
856 | 4 | 0 | |u https://go.oreilly.com/UniOfColoradoBoulder/library/view/~/9781491917565/?ar |z Full Text (via O'Reilly/Safari) |
915 | |a - | ||
956 | |a O'Reilly-Safari eBooks | ||
956 | |b O'Reilly Online Learning: Academic/Public Library Edition | ||
994 | |a 92 |b COD | ||
998 | |b Subsequent record output | ||
999 | f | f | |i f5617b96-75de-5aee-a03c-0a887ee03135 |s 5210c6c6-a454-5710-a2ab-34a782d0b850 |
952 | f | f | |p Can circulate |a University of Colorado Boulder |b Online |c Online |d Online |e QA76.76.O62 |h Library of Congress classification |i web |n 1 |