* pages/*: add standard translation and links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix1: false positives; standardize Bengali, Hindi, Nepali periods * fix: periods in recently added Bengali pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix: false positives in modified files Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: update to native period in Bengali l10n Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
21 lines
612 B
Markdown
21 lines
612 B
Markdown
# docker start
|
|
|
|
> 1つまたは複数の停止中コンテナを起動します。
|
|
> 詳しくはこちら: <https://docs.docker.com/engine/reference/commandline/start/>
|
|
|
|
- ヘルプを表示する:
|
|
|
|
`docker start`
|
|
|
|
- Dockerコンテナを起動する:
|
|
|
|
`docker start {{コンテナ}}`
|
|
|
|
- コンテナを起動し、`stdout`(標準出力) と `stderr`(標準エラー出力) をアタッチし、シグナルを転送する:
|
|
|
|
`docker start --attach {{コンテナ}}`
|
|
|
|
- スペースで区切られた1つまたは複数の停止中コンテナを起動する:
|
|
|
|
`docker start {{コンテナ1 コンテナ2 ...}}`
|