Data Science, explained for beginners - 0 views
reSRC · List of Free Programming Books - 0 views
NetHogs - 監看每支程式頻寬使用情形 - 0 views
Best practices for writing Dockerfiles - Docker Documentation - 0 views
-
Run only one process per container
-
use current Official Repositories as the basis for your image
-
put long or complex RUN statements on multiple lines separated with backslashes.
- ...16 more annotations...
Dockerfile Best Practices - 0 views
How To Install and Use Docker: Getting Started | DigitalOcean - 0 views
-
docker as a project offers you the complete set of higher-level tools to carry everything that forms an application across systems and machines - virtual or physical - and brings along loads more of great benefits with it
-
docker daemon: used to manage docker (LXC) containers on the host it runs
-
docker CLI: used to command and communicate with the docker daemon
- ...20 more annotations...
2.0 Project Tutorial - CircleCI - 0 views
-
The .circleci/config.yml file may be comprised of several Jobs.
-
a job is comprised of several Steps
-
which are commands that execute in the container that is defined in the first image: key in the file. This first image is also referred to as the primary container.
- ...5 more annotations...
Networking with overlay networks | Docker Documentation - 0 views
-
The manager host will function as both a manager and a worker, which means it can both run service tasks and manage the swarm.
-
connected together using an overlay network called ingress
-
each of them now has an overlay network called ingress and a bridge network called docker_gwbridge
- ...7 more annotations...
How To Create a Kubernetes Cluster Using Kubeadm on Ubuntu 18.04 | DigitalOcean - 0 views
-
A pod is an atomic unit that runs one or more containers.
-
Pods are the basic unit of scheduling in Kubernetes: all containers in a pod are guaranteed to run on the same node that the pod is scheduled on.
-
Each pod has its own IP address, and a pod on one node should be able to access a pod on another node using the pod's IP.
- ...12 more annotations...
How To Benchmark HTTP Latency with wrk on Ubuntu 14.04 | DigitalOcean - 0 views
-
wrk, which measures the latency of your HTTP services at high loads.
-
Latency refers to the time interval between the moment the request was made (by wrk) and the moment the response was received (from the service).
-
Tests can't be compared to real users, but they should give you a good estimate of expected latency
Git Workflow Basics - The Miners - 0 views
How to Test Rails Models with RSpec - Semaphore - 0 views
-
Behaviour-driven Development (BDD) as a software development process is composed of multiple subtechniques.
-
Models can sometimes be full-blown objects with rich behaviour.
-
An alternative is to use the shoulda gem.
- ...3 more annotations...
How To Use Bash's Job Control to Manage Foreground and Background Processes | DigitalOcean - 0 views
-
Most processes that you start on a Linux machine will run in the foreground. The command will begin execution, blocking use of the shell for the duration of the process.
-
By default, processes are started in the foreground. Until the program exits or changes state, you will not be able to interact with the shell.
-
stop the process by sending it a signal
- ...17 more annotations...
FreeIPAv2:Dynamic updates with GSS-TSIG - FreeIPA - 0 views
-
This short tutorial will teach you how to setup your name server so that you can dynamically update the resource records with the help of FreeIPA.
-
tkey-gssapi-keytab
-
BIND version
- ...9 more annotations...
Understanding Nginx Server and Location Block Selection Algorithms | DigitalOcean - 0 views
-
A server block is a subset of Nginx’s configuration that defines a virtual server used to handle requests of a defined type. Administrators often configure multiple server blocks and decide which block should handle which connection based on the requested domain name, port, and IP address.
-
A location block lives within a server block and is used to define how Nginx should handle requests for different resources and URIs for the parent server. The URI space can be subdivided in whatever way the administrator likes using these blocks. It is an extremely flexible model.
-
Nginx logically divides the configurations meant to serve different content into blocks, which live in a hierarchical structure. Each time a client request is made, Nginx begins a process of determining which configuration blocks should be used to handle the request.
- ...37 more annotations...
Understanding Nginx HTTP Proxying, Load Balancing, Buffering, and Caching | DigitalOcean - 0 views
-
allow Nginx to pass requests off to backend http servers for further processing
-
Nginx is often set up as a reverse proxy solution to help scale out infrastructure or to pass requests to other servers that are not designed to handle large client loads
-
explore buffering and caching to improve the performance of proxying operations for clients
- ...48 more annotations...
‹ Previous
21 - 40 of 52
Next ›
Showing 20▼ items per page