Files
freeCodeCamp/guide/russian/containers/docker/creating-a-new-container/index.md
2018-10-16 21:32:40 +05:30

18 lines
367 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Creating a new container
localeTitle: Создание нового контейнера
---
Создание контейнера с использованием Docker CLI
```yaml
docker create [OPTIONS] IMAGE [COMMAND] [ARG...]
```
# Примеры
Создание и запуск контейнера
```sh
$ docker create -t -i fedora bash
```