Docker Redis

docker redis 拉取镜像和运行容器 1 docker pull redis 默认拉取latest的tag。 1 docker run -d -p 6379:6379 --name 容器名 redis 创建容器并运行,6379是Redis的默认端口。 在容器中启

Dockerfile

Dockerfile Dockerfile中的注释行,都是以#开头的。 除注释之外,每一行都是一条指令(Instruction)。指令的格式是指令参数如下。 1 INSTRUCTION argument

Docker网络

docker网络 overview Docker’s networking subsystem is pluggable, using drivers. Several drivers exist by default, and provide core networking functionality: bridge: The default network driver. If you don’t specify a driver, this is the type of network you are creating. Bridge networks are usually used when your applications run in standalone containers that

Docker基础

Docker 关键概念 docker engine和docker machine的区别 官方文档 简言之,平时说的docker是指docker engine,其是一个客户端-

Leetcode(39-76)

Leetcode(39-76) 39-Combination Sum「回溯法」 Combination Sum 注意此处的是无限制数量,回溯法可以解决 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 #include <vector> using namespace std; classSolution { public: vector<vector<int>>