9 Repos
Tools for containerization, process management, and cloud deployment.
Explore 9 awesome GitHub repositories matching part of an awesome list · Deployment and DevOps. Refine with filters or upvote what's useful.
This project is an administrative reference for Docker, providing guides and command references for system maintenance, image building, network configuration, and security hardening. It serves as a comprehensive manual for managing the container lifecycle and performing general system administration. The reference covers the construction and optimization of images through build files, layering strategies, and registry integration. It also provides instructions for configuring isolated virtual networks, mapping ports, and implementing security hardening using Linux capabilities and read-only f
Quick reference guide for Docker commands.
The AWS Command Line Interface is a terminal tool and API client used to manage and automate Amazon Web Services infrastructure. It functions as a cloud resource management tool that allows for the creation, configuration, and modification of cloud services through a unified set of commands. The tool provides mechanisms to route authenticated requests to global and region-specific service endpoints. It manages identity keys and access profiles through environment variables and configuration files to authenticate requests across different cloud accounts. The interface supports cloud resource
Command-line interface for managing AWS services.
electron-builder is a cross-platform build automator and packaging tool for Electron applications. It bundles source code and dependencies into platform-specific installers, portable executables, and app store formats for Windows, macOS, and Linux. The project functions as a distribution pipeline that orchestrates the signing and notarization of binaries to ensure authenticity and bypass security warnings. It also serves as an auto-update orchestrator, preparing application packages and distribution channels to support automatic background software updates. Its capability surface covers the
Tool for packaging and distributing Electron applications.
wait-for-it is a Bash-based service dependency tool and network utility designed to verify TCP port availability. It functions as a connection wait script that pauses execution until a specific host and port are reachable. The utility polls a remote port to ensure a service is online before starting dependent processes. Once the network condition is met or a TCP socket handshake is successful, it can trigger a secondary command to initiate subsequent automation tasks. The script includes mechanisms for linear execution blocking and timeout-driven termination to prevent infinite hangs. These
Utility for waiting on service availability in Docker.
This project provides official container images for the Node.js runtime and its package managers. It serves as a containerized JavaScript runtime that bundles the engine and dependencies to ensure consistent application execution across different CPU architectures and operating systems. The project offers a range of Linux-based runtime images, including full, slim, and minimal distributions, allowing users to balance package availability against disk footprint. To improve security, it provides a non-root application environment that executes processes as an unprivileged user. The available i
Official Docker images for Node.js environments.
This is a step-by-step tutorial that teaches Docker from the ground up, covering how to build images from Dockerfiles, run and manage containers, and connect them on user-defined networks. The guide walks through packaging applications into portable containers and using Docker Compose to define and orchestrate multi-service applications with a single YAML configuration. The curriculum extends into cloud deployment, explaining how to push images to registries like Docker Hub and deploy single-container applications to AWS Elastic Beanstalk as well as multi-container setups to AWS ECS. It also
Tutorial for learning Docker and containerization.
Hypernova ist eine verteilte Rendering-Engine und ein Server-Side-Rendering-Dienst, der JavaScript-Komponenten auf einem Remote-Server in HTML umwandelt. Sie fungiert als Framework für die Hydratisierung von Webseiten, das es ermöglicht, interaktives Verhalten an statisches, serverseitig generiertes Markup anzuhängen, indem der Anwendungszustand im Browser deserialisiert wird. Das System nutzt eine isolierte JavaScript-Laufzeitumgebung, die Komponenten innerhalb von sandboxed virtuellen Maschinen ausführt, um das Durchsickern globaler Zustände und Interferenzen zwischen gleichzeitigen Anfragen zu verhindern. Es verwendet eine verteilte Architektur, um Rendering-Aufgaben über mehrere Worker-Prozesse und CPU-Kerne hinweg auszuführen. Die Engine verwaltet den Anfrage- und Verkehrsfluss durch eine Batch-Request-Pipeline und ein erweiterbares Middleware-System für die Lifecycle-Interzeption. Sie umfasst Funktionen für die Serialisierung des Anwendungszustands, clientseitige Rendering-Fallbacks zur Sicherstellung der Seitenverfügbarkeit sowie Unterstützung für mehrsprachige Clients zur Übermittlung von Anfragen aus verschiedenen Backend-Umgebungen.
Service for server-side rendering of JavaScript views.
docker-lambda ist ein Docker-basierter Serverless-Simulator und lokaler Emulator, der darauf ausgelegt ist, AWS Lambda-Laufzeitumgebungen zu replizieren. Er bietet ein System zur lokalen Ausführung von Serverless-Funktionen und zur Spiegelung von Cloud-Ausführungsumgebungen durch containerisierte Images. Das Projekt enthält einen lokalen API-Server, der Funktionsaufrufe via HTTP ermöglicht, um Kaltstarts während des Testens zu eliminieren. Es verfügt über ein Build-Tool zum Kompilieren nativer Abhängigkeiten und zum Verpacken von Funktionscode in Deployment-Archive unter Verwendung spezialisierter System-Images. Die Umgebung unterstützt das Spiegeln gemeinsam genutzter Abhängigkeitsebenen durch das Einbinden lokaler Verzeichnisse und nutzt Dateisystem-Überwachung, um Hot-Reloading von Funktionscode zu ermöglichen. Zudem bietet sie einen Mechanismus, um große Event-Payloads über die Standardeingabe zu übergeben und so Längenbeschränkungen der Kommandozeile zu umgehen.
Docker images that replicate the AWS Lambda environment.
Dieses Projekt ist ein Prozessmanagement-Toolkit für Docker-Container. Es bietet Hilfsmittel zur Überwachung von Container-Prozessen, zum Rendern von Boot-Templates, zum Streamen von Logs und zum Verifizieren von Dienstabhängigkeiten. Das Toolkit enthält einen Dienstabhängigkeits-Checker, der den Anwendungsstart blockiert, bis erforderliche Netzwerk-Sockets, Web-Endpunkte oder lokale Dateien verfügbar sind. Es verfügt zudem über einen Konfigurations-Template-Renderer zur Generierung von Anwendungsdateien aus Umgebungsvariablen während des Boot-Prozesses sowie ein Log-Streaming-Hilfsmittel, das Dateiaktualisierungen mittels Polling und Rotationsbehandlung an die Standardausgabe weiterleitet. Das System verwaltet zudem Anwendungslebenszyklen durch einen Prozess-Supervisor, der die Ausführung umschließt und Systemsignale an untergeordnete Prozesse weiterleitet, um ein ordnungsgemäßes Herunterfahren sicherzustellen.
Tool for configuring and running applications in Docker containers.