mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-16 19:43:41 +00:00
a795bf863a
"s/程序/程式/g" "s/性能/效能/g" "s/如下/以下/g" "s/加載/載入/g" "s/獲取/取得/g" "s/服務器/伺服器/g" "s/信息/訊息/g" "s/註釋/註解/g" "s/裏/裡/g" "s/構建/建立/g" "s/配置/設定/g"
18 lines
822 B
Markdown
18 lines
822 B
Markdown
## [Ubuntu](https://registry.hub.docker.com/_/ubuntu/)
|
|
|
|
### 基本訊息
|
|
[Ubuntu](https://en.wikipedia.org/wiki/Ubuntu) 是流行的 Linux 發行版,其自帶軟件版本往往較新一些。
|
|
該倉庫提供了 Ubuntu從12.04 ~ 14.10 各個版本的鏡像。
|
|
|
|
### 使用方法
|
|
默認會啟動一個最小化的 Ubuntu 環境。
|
|
```
|
|
$ sudo docker run --name some-ubuntu -i -t ubuntu
|
|
root@523c70904d54:/#
|
|
```
|
|
|
|
### Dockerfile
|
|
* [12.04 版本](https://github.com/tianon/docker-brew-ubuntu-core/blob/2b105575647a7e2030ff344d427c3920b89e17a9/precise/Dockerfile)
|
|
* [14.04 版本](https://github.com/tianon/docker-brew-ubuntu-core/blob/2b105575647a7e2030ff344d427c3920b89e17a9/trusty/Dockerfile)
|
|
* [14.10 版本](https://github.com/tianon/docker-brew-ubuntu-core/blob/2b105575647a7e2030ff344d427c3920b89e17a9/utopic/Dockerfile)
|