- 博客(26)
- 收藏
- 关注
转载 Dockerfile 中的 CMD和ENTRYPOINT 两兄弟
CMD先说老大 CMD当一个容器准备好运行之后,需要找一个指定命令来创建一个初始进程并运行。一,/bin/sh -c因为某种意义上一个Dockerfile其实可以理解是一个简化版bash 脚本,所以一般情况下,我们可以像写bash命令一样使用CMD来指定使用bash来运行命令。比如:CMD echo 'hello world!'这样,容器创建之后,就会...
2018-09-26 17:16:00 234
转载 Two-Phase Commit (2PC)
两阶段提交模式像极了比赛发令:“预备,开始!”转载于:https://www.cnblogs.com/anor/p/9054947.html
2018-05-18 10:30:00 143
转载 How To Build Kubernetes Platform (构建Kubernetes平台方案参考)
Architecture Architecture Diagram Non-Prod EnvironmentProd EnvironmentCluster NetworkingContainer RepositorySetupMinikube For Dev EnvKubeadm For ...
2018-02-09 17:57:00 239
转载 AWS Data Lake Service Stack
转载于:https://www.cnblogs.com/anor/p/8316984.html
2018-01-19 14:59:00 121
转载 CNCF 云原生容器生态系统概要 (转)
http://mp.weixin.qq.com/s/0_oNbNMlyDNNfL3Beblldw转载于:https://www.cnblogs.com/anor/p/8250694.html
2018-01-09 11:46:00 173
转载 深入Docker 存储驱动 (转)
参考:http://static.dockerone.com/ppt/filedriver.html#28转载于:https://www.cnblogs.com/anor/p/7993119.html
2017-12-06 15:54:00 68
转载 云原生技术图谱 (CNCF Landscape)
转自:https://raw.githubusercontent.com/cncf/landscape/master/landscape/CloudNativeLandscape_latest.jpg转载于:https://www.cnblogs.com/anor/p/7991864.html
2017-12-06 11:32:00 998
转载 A workaround to change shared memory size for Docker containers in AWS ECS
IssueBecause of not supporting to specify the following docker run parameter, containers in ECS cannot resize the shared memory.--shm-sizeSolutionHere is a workaround:1. In order to ope...
2017-12-01 11:47:00 106
转载 .Net中的强名称(Strong Name)
我在CSDN上的文章, 转载与此:.Net中的强名称(Strong Name)http://blog.csdn.net/Anor/article/details/3649646转载于:https://www.cnblogs.com/anor/p/7831201.html
2017-11-14 10:28:00 179
转载 cron on Centos
1. crond.service2. configuration2.0 format# Example of job definition:# .---------------- minute (0 - 59)# | .------------- hour (0 - 23)# | | .---------- day of month (1 - 31)# | | | ....
2017-10-19 11:47:00 94
转载 Cygwin, MinGW/MSYS, MinGW-W64/MSYS2
1. Cygwin http://www.cygwin.com/ Cygwin is a large collection of GNU and Open Source tools which provide functionality similar to a Linux distribution on Windows Cygwin is a DLL (cygwin1.dl...
2017-08-04 15:12:00 125
转载 Regular Expression Flavors
Perl https://perldoc.perl.org/perlre.htmlPCRE http://www.pcre.org/current/doc/html/pcre2syntax.htmlPOSIX BRE/ERE http://pubs.opengroup.org/onlinepubs/9699919799/GNU BRE/ERE http...
2017-04-26 17:15:00 91
转载 VirtualBox Networking Model
转载于:https://www.cnblogs.com/anor/p/6118688.html
2016-11-30 17:21:00 128
转载 HTTP/2 带来的新颖
BinaryFramesHTTP2 在TCP层之上 HTTP下增加了Binary Frames协议, 基于该协议HTTP Request/Response 可以被分拆成由Frame组成的Stream在TCP上传输。Header Compression -- HPACK使用HPACk压缩http header成二进制格式,使用静态和动态索引表来压缩Header内容。 对动...
2016-07-08 11:58:00 66
转载 Bash Template
#/bin/bash#set -xset -eusage(){cat <<EOFUsage:`basename $0` [OPTIONS] <non-option arguments>Purpose: xxxxxxxxxxxxDescription: NoneParameters: ...
2016-06-29 14:58:00 118
转载 How to Configure YUM to Install Packages From Installation ISO (RHEL)
1. Mount RHEL Installation ISOmkdir /media/dvdmount /dev/cdrom /media/dvd2. Get Media ID with the ISOhead -n1 /media/dvd/.discinfo1384196515.4157153. Add yum configuration fil...
2016-06-23 15:53:00 111
转载 Filesystem Hierarchy Standard (Unix, Linux etc)
http://www.pathname.com/fhs//boot -- Static files of the boot loader Purpose: contains everything required for the boot process except configuration files not needed at boot time and the...
2016-06-23 10:18:00 100
转载 MS-DOS Batch Script Template
@echo off@setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION@rem Name: @rem Purpose: @rem @rem Author: @rem Revision:@rem@rem @echo off@rem @set method=goto:eof@rem @set m...
2016-01-07 10:02:00 69
转载 Words Prefixed Trans-
transit v.Pass across or through (an area) The new large ships will be too big to transit the Panama Canal. n.The carrying of people or things from on place to another The p...
2015-09-11 17:20:00 140
转载 Window I/O 完成端口 (Windows I/O Completion Port (IOCP))
相关对象IO EndPoint, 所有支持重叠IO(overlapped IO)的设备,比如文件,Winsock,管道等。IOCP, IO完成端口内核对象,可以使用APICreateIoCompletionPort创建。在使用该API创建IOCP的同时可以关联一个IO EndPoint,也可以在创建后再次调用该API关联其他的IO Endpoint。Thread,Wi...
2015-09-08 16:19:00 145
转载 关于.Net的强名称(Strong Name)
下面是我在CSDN上发表的《关于.Net的强名称(Strong Name)》,转载于此。关于.Net的强名称(Strong Name)转载于:https://www.cnblogs.com/anor/p/4651048.html...
2015-07-16 13:34:00 90
转载 GCC编译连接c++代码的四个阶段(Four stages of GCC compilation of C++ code)
There are four stages for GCC to compile c/c++ applications:Preprocessing, Compilation proper, Assembly, Linking.The following table illustrates input, output, gcc options in the foure stages....
2015-05-22 15:01:00 99
转载 VMWare 支持的网络连接类型 (VMWare Virtual Network Connection Types)
转载于:https://www.cnblogs.com/anor/p/4506255.html
2015-05-15 16:26:00 157
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人