[compose] Remove outdated content

Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
This commit is contained in:
Kang Huaishuai 2020-11-02 18:57:51 +08:00
parent 00274b0615
commit 7d51bacb12
No known key found for this signature in database
GPG Key ID: 5E515022F565DA09
4 changed files with 0 additions and 10 deletions

View File

@ -18,10 +18,6 @@ docker-compose [-f=<arg>...] [options] [COMMAND] [ARGS...]
* `-p, --project-name NAME` 指定项目名称默认将使用所在目录名称作为项目名
* `--x-networking` 使用 Docker 的可拔插网络后端特性
* `--x-network-driver DRIVER` 指定网络后端的驱动默认为 `bridge`
* `--verbose` 输出更多调试信息
* `-v, --version` 打印版本并退出

View File

@ -11,5 +11,3 @@ services:
- .:/code
ports:
- "8000:8000"
links:
- db

View File

@ -43,8 +43,6 @@ services:
- .:/code
ports:
- "8000:8000"
links:
- db
```
查看 [`docker-compose.yml` 章节](compose_file.md) 了解更多详细的工作机制

View File

@ -45,8 +45,6 @@ services:
- .:/myapp
ports:
- "3000:3000"
links:
- db
```
所有文件就绪后我们就可以通过使用 `docker-compose run` 命令生成应用的骨架了