MongoDB | 配置选项

Configuration File Offical:The Official Doc.Configuration File Options NOTE: File Format: YAML YAML does not support tab characters for indentation: use spaces instead. Use The Configuration File Specify the config file with --config 1 2 mongod --config /etc/mongod.conf mongos --config /etc/mongos.conf Specify the config file with -f 1 2 mongod -f /etc/mongod.conf mongos -f /etc/mongos.conf Core Options systemLog 1 2 3

Caddy | 学习笔记

安装 Linux Note: You must specify a personal or commercial license; see getcaddy.com for instructions. (安装时要求必须给出一种许可证,所以下面命令添加了选项:-s personal) 1 2 3 4 5 # 一键安装脚本 [zhe@zhe Temp]$ curl https://getcaddy.com | bash -s personal # 查看

Docker | Dockerfile

FROM MAINTAINER RUN COPY ADD CMD ENTRYPOINT EXPOSE ENV ARG VOLUME WORKDIR ONBUILD FROM 说明:FROM,指定镜像构建的基础镜像,每个Dockerfile都必须包含FROM指令,且为第一条指令。 格式:F

Docker | 构建镜像

构建镜像 docker build 1 2 $ docker build [选项] <上下文路径/URL/-> $ docker build -t nginx:v3 . 镜像构建的上下文(Context) docker build工作原理 C/S

Docker | 常用命令

获取镜像:docker pull 1 2 3 # Usage $ docker pull [选项] [Docker Registry地址]<仓库名>:<标签> $ docker pull ubuntu:14.04 列出镜像:doc

Docker | Install

简介 本文基于Ubuntu16.04_64bit_OS 和 CentOS7_64bit_OS 查看系统信息 $ uname -a Linux device_name 4.4.0-31-generic #50~14.04.1-Ubuntu SMP Wed Jul 13 01:07:32 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux 使用root账号进行安装 安装前准备 Ubuntu