1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge branch 'master' of ssh://github.com/dotcloud/docker

This commit is contained in:
Solomon Hykes 2013-03-26 15:36:07 -07:00
commit 84d1929973
7 changed files with 9 additions and 8 deletions

View file

@ -258,8 +258,9 @@ func (container *Container) Start() error {
var err error
if container.Config.Tty {
container.cmd.Env = append(container.Config.Env,
"TERM=xterm",
container.cmd.Env = append(
[]string{"TERM=xterm"},
container.cmd.Env...,
)
err = container.startPty()
} else {

View file

@ -1,4 +1,4 @@
:title: docker documentation
:title: Base commands
:description: Common usage and commands
:keywords: Examples, Usage

View file

@ -1,4 +1,4 @@
:title: Contributing to Docker
:title: Setting up a dev environment
:description: Guides on how to contribute to docker
:keywords: Docker, documentation, developers, contributing, dev environment

View file

@ -1,4 +1,4 @@
:title: Docker: Hello world example
:title: Hello world example
:description: A simple hello world example with Docker
:keywords: docker, example, hello world

View file

@ -1,4 +1,4 @@
:title: Docker: Hello world daemon example
:title: Hello world daemon example
:description: A simple hello world daemon example with Docker
:keywords: docker, example, hello world, daemon

View file

@ -1,4 +1,4 @@
:title: Docker: Python Web app example
:title: Python Web app example
:description: Building your own python web app using docker
:keywords: docker, example, python, web app

View file

@ -7,7 +7,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>dotCloud - {{ meta['title'] if meta and meta['title'] else title }}</title>
<title>Docker - {{ meta['title'] if meta and meta['title'] else title }}</title>
<meta name="description" content="{{ meta['description'] if meta }}" />
<meta name="keywords" content="{{ meta['keywords'] if meta }}" />