Op werkdagen voor 23:00 besteld, morgen in huis Gratis verzending vanaf €20
-
Inloggen
-- Inloggen
  • accountoverzicht
  • bestellingen
  • facturen betalen
  • downloadcentrum
  • gegevens
  • financieel
  • inloggen
  • uitloggen

Uw winkelwagen

Naar winkelwagen Verder winkelen
Boek niet gevonden? Wij gaan voor u op zoek!
Vul onderstaand formulier zo volledig mogelijk in, dan gaan wij voor u op zoek.
Vul onderstaand formulier zo volledig mogelijk in.
Rubrieken
Alle boeken
  • Cadeauboeken
  • Computer & Informatica
  • Economie
  • Filosofie
  • Flora en fauna
  • Geneeskunde
  • Geschiedenis
  • Gezondheid
  • Jeugd
  • Koken en eten
  • Kunst en cultuur
  • Literatuur en romans
  • Management
  • Mens en maatschappij
  • Naslagwerken
  • Non-fictie informatief/professioneel
  • Paramedisch
  • Psychologie
  • Reizen
  • Religie
  • Schoolboeken
  • Spiritualiteit
  • Sport, hobby, lifestyle
  • Thrillers en spanning
  • Wetenschap en techniek
  • Woordenboeken en taal
Productaanvraag Binnenkort verwacht Helpfunctie Attenderingen
Attenderingen instellen
  • Algemeen
    • Recht op u af
    • Juridische attendering
    • Hiatensignalering juridisch
    • Seriesignalering
    • Herdruksignalering
    • Internationaal
  • Aanbevolen per ministerie
    • Algemene Zaken
    • Binnenlandse Zaken en Koninkrijksrelaties
    • Buitenlandse Zaken
    • Defensie
    • Economische Zaken en Klimaat
    • Financiën
    • Infrastructuur en Waterstaat
    • Justitie en Veiligheid
    • Landbouw, Natuur en Voedselkwaliteit
    • Onderwijs, Cultuur en Wetenschap
    • Nationale Politie
    • Sociale Zaken en Werkgelegenheid
    • Volksgezondheid, Welzijn en Sport
Periodieken
Alle periodieken
  • Algemeen
    • Uw periodieken
    • Verlengen / opzeggen
    • Openstaande claims
    • Bibliografische wijzigingen
    • Abonnementshouders
    • Afleveradressen
    • Referenties
    • Notities
  • Aanbevolen per ministerie
    • Algemene Zaken
    • Binnenlandse Zaken en Koninkrijksrelaties
    • Buitenlandse Zaken
    • Defensie
    • Economische Zaken en Klimaat
    • Financiën
    • Infrastructuur en Waterstaat
    • Justitie en Veiligheid
    • Landbouw, Natuur en Voedselkwaliteit
    • Onderwijs, Cultuur en Wetenschap
    • Nationale Politie
    • Sociale Zaken en Werkgelegenheid
    • Volksgezondheid, Welzijn en Sport
Boekseries
Alle boekseries
  • Algemeen
    • Uw serieabonnementen
    • Geadresseerden
    • Abonnementshouders
    • Afleveradressen
    • Referenties
    • Notities
  • Aanbevolen per ministerie
    • Algemene Zaken
    • Binnenlandse Zaken en Koninkrijksrelaties
    • Buitenlandse Zaken
    • Defensie
    • Economische Zaken en Klimaat
    • Financiën
    • Infrastructuur en Waterstaat
    • Justitie en Veiligheid
    • Landbouw, Natuur en Voedselkwaliteit
    • Onderwijs, Cultuur en Wetenschap
    • Nationale Politie
    • Sociale Zaken en Werkgelegenheid
    • Volksgezondheid, Welzijn en Sport
010-4091943
Klantenservice
Mijn account
Mijn bestellingen
010-4091943
Boeken Computer en informatica Using Docker
Using Docker
Adrian Mouat

Adrian Mouat is Chief Scientist at Container Solutions. In the past he has worked on a wide range of software projects, from small webapps to large scale data-analysis software.

Meer over Adrian Mouat
Adrian Mouat

Using Docker

Developing and Deploying Software with Containers

Specificaties
Paperback, 339 blz. | Engels
O'Reilly | 1e druk, 2015
ISBN13: 9781491915769
Rubricering
Hoofdrubriek : Computer en informatica
O'Reilly 1e druk, 2015 9781491915769
Verwachte levertijd ongeveer 16 werkdagen
68,71
In winkelwagen
 
Stel een vraag over dit boek
Samenvatting Specificaties Over de auteur Inhoudsopgave

Samenvatting

Docker containers offer simpler, faster, and more robust methods for developing, distributing, and running software than previously available. With this hands-on guide, you’ll learn why containers are so important, what you’ll gain by adopting Docker, and how to make it part of your development process.

Ideal for developers, operations engineers, and system administrators—especially those keen to embrace a DevOps approach—Using Docker will take you from Docker and container basics to running dozens of containers on a multi-host system with networking and scheduling. The core of the book walks you through the steps needed to develop, test, and deploy a web application with Docker.

- Get started with Docker by building and deploying a simple web application
- Use Continuous Deployment techniques to push your application to production multiple times a day
- Learn various options and techniques for logging and monitoring multiple containers
- Examine networking and service discovery: how do containers find each other and how do you connect them?
- Orchestrate and cluster containers to address load-balancing, scaling, failover, and scheduling
- Secure your system by following the principles of defense-in-depth and least privilege

Specificaties

ISBN13:9781491915769
Trefwoorden:software, systeembeheer, Docker
Taal:Engels
Bindwijze:paperback
Aantal pagina's:339
Uitgever:O'Reilly
Druk:1
Verschijningsdatum:22-12-2015
Hoofdrubriek:Computer en informatica

Over Adrian Mouat

Adrian Mouat is Chief Scientist at Container Solutions. In the past he has worked on a wide range of software projects, from small webapps to large scale data-analysis software.

Andere boeken door Adrian Mouat

Bekijk alle boeken

Inhoudsopgave

U kunt van deze inhoudsopgave een PDF downloaden


Preface

Part 1: Background and Basics
1. The What and Why of Containers
-Containers Versus VMs
-Docker and Containers
-Docker: A History
-Plugins and Plumbing
-64-Bit Linux

2. Installation
-Installing Docker on Linux
-Installing Docker on Mac OS or Windows
-A Quick Check

3. First Steps
-Running Your First Image
-The Basic Commands
-Building Images from Dockerfiles
-Working with Registries
-Using the Redis Official Image
-Conclusion

4. Docker Fundamentals
-The Docker Architecture
-How Images Get Built
-Connecting Containers to the World
-Linking Containers
-Managing Data with Volumes and Data Containers
-Common Docker Commands
-Conclusion

Part 2: The Software Lifecycle with Docker
5. Using Docker in Development
-Say “Hello World!”
-Automating with Compose
-Conclusion-

6. Creating a Simple Web App
-Creating a Basic Web Page
-Taking Advantage of Existing Images
-Add Some Caching
-Microservices
-Conclusion

7. Image Distribution
-Image and Repository Naming
-The Docker Hub
-Automated Builds
-Private Distribution
-Reducing Image Size
-Image Provenance

8. Continuous Integration and Testing with Docker
-Adding Unit Tests to Identidock
-Creating a Jenkins Container
-Pushing the Image
-Backing Up Jenkins
-Hosted CI Solutions
-Testing and Microservices
-Conclusion

9. Deploying Containers
-Provisioning Resources with Docker Machine
-Using a Proxy
-Execution Options
-Host Configuration
-Specialist Hosting Options
-Persistent Data and Production Containers
-Sharing Secrets
-Networking
-Production Registry
-Continuous Deployment/Delivery
-Conclusion

10. Logging and Monitoring
-Logging
-Monitoring and Alerting
-Commercial Monitoring and Logging Solutions
-Conclusion

Part 3: Tools and Techniques
11. Networking and Service Discovery
-Ambassadors
-Service Discovery
-Networking Options
-New Docker Networking
-Networking Solutions
-Conclusion

12. Orchestration, Clustering, and Management
-Clustering and Orchestration Tools
-Container Management Platforms
-Conclusion

13. Security and Limiting Containers
-Things to Worry About
-Defense-in-Depth
-Securing Identidock
-Segregate Containers by Host
-Applying Updates
-Image Provenance
-Security Tips
-Run a Hardened Kernel
-Linux Security Modules
-Auditing
-Incident Response
-Future Features
-Conclusion

Index

Anderen die dit boek kochten, kochten ook

  • Prompten als een Pro
    Bob van Duuren
    Prompten als een Pro
    € 34,99
  • Data and Analytics Strategy for Business
    Simon Asplen–taylor
    Data and Analytics Strategy for Business
    € 53,89
  • A Tale Of Two Halves: The History of Football Video Games (Captain's Edition)
    Bitmap Books
    A Tale Of Two Halves: The History of Football Video Games (Captain's Edition)
    € 65,54
  • Agile Scrum Handbook
    Nader Rad
    Agile Scrum Handbook
    € 34,83
  • Be Data Analytical
    Jordan Morrow
    Be Data Analytical
    € 48,60
  • Exam Ref SC-300 Microsoft Identity and Access Administrator
    Razi Rais
    Exam Ref SC-300 Microsoft Identity and Access Administrator
    € 50,14

Rubrieken

  • cadeauboeken
  • computer en informatica
  • economie
  • filosofie
  • flora en fauna
  • geneeskunde
  • geschiedenis
  • gezondheid
  • jeugd
  • juridisch
  • koken en eten
  • kunst en cultuur
  • literatuur en romans
  • mens en maatschappij
  • naslagwerken
  • non-fictie informatief/professioneel
  • paramedisch
  • psychologie
  • reizen
  • religie
  • schoolboeken
  • spiritualiteit
  • sport, hobby, lifestyle
  • thrillers en spanning
  • wetenschap en techniek
  • woordenboeken en taal
Uw cookie-instellingen
Deze website maakt gebruik van verschillende soorten cookies. Sommige cookies worden geplaatst door diensten van derden die op onze pagina's worden weergegeven. Om deze externe content te kunnen tonen is nodig dat u toestemming geeft voor het zetten van persoonlijke en marketingcookies. U kunt uw toestemming op elk moment wijzigen of intrekken. In onze cookieverklaring vindt u meer informatie.

Functionele cookies
Deze zijn noodzakelijk voor de werking van de website, zonder deze cookies kan de website niet naar behoren werken.

Persoonlijke en marketingcookies
Wij gebruiken cookies voor statistieken om bij te houden en rapportages te krijgen over hoe bezoekers de website gebruiken. Zo kunnen wij onze website verbeteren. Marketingcookies worden gebruikt om bezoekers te volgen wanneer ze verschillende websites bezoeken. Hun doel is advertenties weergeven die zijn toegesneden op en relevant zijn voor de individuele gebruiker.
Op werkdagen voor 23:00 besteld, morgen in huis Gratis verzending vanaf €20

Klantenservice

Contact Voorwaarden

Bestellen en retourneren

Bezoekadres

Jan van Galenstraat 7
3115 JG  Schiedam

Postadres

Postbus 231
3100 AE  Schiedam
DE BOEKHANDEL VOOR ZAKELIJKE KLANTEN
Algemene voorwaarden Privacy Cookies Service & Contact
© 2025 Wristers Boekverkopers BV

Populaire producten

    Personen

      Trefwoorden

        Using Docker

        Using Docker
        Adrian Mouat
        /
        loader
        Recensiebeleid
        Noordhoff terugkoopgarantie

        Noordhoff koopt jouw boek terug, zonder zorgen!

        Heb je jouw boeken niet meer nodig?

        Als je jouw studieboeken gekocht hebt bij hanzestudybook.nl, kun je geselecteerde titels moeiteloos terugverkopen aan Noordhoff. Geen vragen, geen gedoe en lekker duurzaam.

        Volledige informatie op Noordhoff.nl

        AI-book

        Wat is een AI-book?

        Een AI-book is niet een boek dat geschreven is door AI maar een boek dat verrijkt is met AI. Het maakt de inhoud van een boek interactief via WhatsApp, zodat je ermee kunt chatten. Zie het als een razend slimme assistent die het boek perfect begrijpt en er alles uit onthouden heeft. Jij kunt deze assistent alles vragen. Vraag bijvoorbeeld hoe je iets kunt toepassen op jouw persoonlijke situatie, om een korte samenvatting, of wat de belangrijkste inzichten zijn. AI-books zijn alleen te gebruiken via WhatsApp, je hoeft er geen aparte app voor te installeren.
        Meer informatie over AI-books

        ?

        Geef uw beoordeling

        Using Docker

        Verwijder uw beoordeling