浏览代码

Link to getting started guides from each page

These are really hard to find.

Signed-off-by: Ben Firshman <[email protected]>
Ben Firshman 10 年之前
父节点
当前提交
4d745ab87a
共有 11 个文件被更改,包括 57 次插入7 次删除
  1. 4 1
      docs/cli.md
  2. 4 1
      docs/completion.md
  3. 4 1
      docs/django.md
  4. 4 1
      docs/env.md
  5. 11 0
      docs/extends.md
  6. 3 0
      docs/index.md
  7. 3 0
      docs/install.md
  8. 12 0
      docs/production.md
  9. 4 1
      docs/rails.md
  10. 4 1
      docs/wordpress.md
  11. 4 1
      docs/yml.md

+ 4 - 1
docs/cli.md

@@ -183,8 +183,11 @@ Configures the path to the `ca.pem`, `cert.pem`, and `key.pem` files used for TL
 
 
 ## Compose documentation
 ## Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)
 - [Compose command line completion](completion.md)
 - [Compose command line completion](completion.md)

+ 4 - 1
docs/completion.md

@@ -32,8 +32,11 @@ Enjoy working with Compose faster and with less typos!
 
 
 ## Compose documentation
 ## Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 4 - 1
docs/django.md

@@ -119,8 +119,11 @@ example, run `docker-compose up` and in another terminal run:
 
 
 ## More Compose documentation
 ## More Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 4 - 1
docs/env.md

@@ -34,8 +34,11 @@ Fully qualified container name, e.g. `DB_1_NAME=/myapp_web_1/myapp_db_1`
 
 
 ## Compose documentation
 ## Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose command line completion](completion.md)
 - [Compose command line completion](completion.md)

+ 11 - 0
docs/extends.md

@@ -362,3 +362,14 @@ volumes:
   - /local-dir/bar:/bar
   - /local-dir/bar:/bar
   - /local-dir/baz/:baz
   - /local-dir/baz/:baz
 ```
 ```
+
+## Compose documentation
+
+- [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
+- [Command line reference](cli.md)
+- [Yaml file reference](yml.md)
+- [Compose command line completion](completion.md)

+ 3 - 0
docs/index.md

@@ -48,6 +48,9 @@ Compose has commands for managing the whole lifecycle of your application:
 ## Compose documentation
 ## Compose documentation
 
 
 - [Installing Compose](install.md)
 - [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 3 - 0
docs/install.md

@@ -39,6 +39,9 @@ You can test the installation by running `docker-compose --version`.
 ## Compose documentation
 ## Compose documentation
 
 
 - [User guide](index.md)
 - [User guide](index.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 12 - 0
docs/production.md

@@ -75,3 +75,15 @@ Compose against a Swarm instance and run your apps across multiple hosts.
 Compose/Swarm integration is still in the experimental stage, and Swarm is still
 Compose/Swarm integration is still in the experimental stage, and Swarm is still
 in beta, but if you'd like to explore and experiment, check out the
 in beta, but if you'd like to explore and experiment, check out the
 [integration guide](https://github.com/docker/compose/blob/master/SWARM.md).
 [integration guide](https://github.com/docker/compose/blob/master/SWARM.md).
+
+## Compose documentation
+
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
+- [Command line reference](cli.md)
+- [Yaml file reference](yml.md)
+- [Compose environment variables](env.md)
+- [Compose command line completion](completion.md)
+

+ 4 - 1
docs/rails.md

@@ -119,8 +119,11 @@ you're using Boot2docker, `boot2docker ip` will tell you its address).
 
 
 ## More Compose documentation
 ## More Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 4 - 1
docs/wordpress.md

@@ -114,8 +114,11 @@ address).
 
 
 ## More Compose documentation
 ## More Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Yaml file reference](yml.md)
 - [Yaml file reference](yml.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)

+ 4 - 1
docs/yml.md

@@ -380,8 +380,11 @@ read_only: true
 
 
 ## Compose documentation
 ## Compose documentation
 
 
-- [Installing Compose](install.md)
 - [User guide](index.md)
 - [User guide](index.md)
+- [Installing Compose](install.md)
+- [Get started with Django](django.md)
+- [Get started with Rails](rails.md)
+- [Get started with Wordpress](wordpress.md)
 - [Command line reference](cli.md)
 - [Command line reference](cli.md)
 - [Compose environment variables](env.md)
 - [Compose environment variables](env.md)
 - [Compose command line completion](completion.md)
 - [Compose command line completion](completion.md)