Skip to content

Commit a259f45

Browse files
author
Victoria Bialas
committed
clarified use of .yml and .yaml for Compose file, both can be used
Signed-off-by: Victoria Bialas <[email protected]>
1 parent af1a2bf commit a259f45

File tree

4 files changed

+25
-11
lines changed

4 files changed

+25
-11
lines changed

compose/compose-file.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The Compose file is a [YAML](http://yaml.org/) file defining
1212
[volumes](compose-file.md#volume-configuration-reference).
1313
The default path for a Compose file is `./docker-compose.yml`.
1414

15+
>**Tip:** You can use either a `.yml` or `.yaml` extension for this file. They both work.
16+
1517
A service definition contains configuration which will be applied to each
1618
container started for that service, much like passing command-line parameters to
1719
`docker run`. Likewise, network and volume definitions are analogous to
@@ -1309,4 +1311,4 @@ If you forget and use a single dollar sign (`$`), Compose interprets the value a
13091311
- [Get started with Django](django.md)
13101312
- [Get started with Rails](rails.md)
13111313
- [Get started with WordPress](wordpress.md)
1312-
- [Command line reference](./reference/index.md)
1314+
- [Command line reference](./reference/index.md)

compose/django.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This quick-start guide demonstrates how to use Docker Compose to set up and run
1010
### Define the project components
1111

1212
For this project, you need to create a Dockerfile, a Python dependencies file,
13-
and a `docker-compose.yml` file.
13+
and a `docker-compose.yml` file. (You can use either a `.yml` or `.yaml` extension for this file.)
1414

1515
1. Create an empty project directory.
1616

@@ -183,4 +183,4 @@ In this section, you set up the database connection for Django.
183183
- [Get started with Rails](rails.md)
184184
- [Get started with WordPress](wordpress.md)
185185
- [Command line reference](./reference/index.md)
186-
- [Compose file reference](compose-file.md)
186+
- [Compose file reference](compose-file.md)

compose/rails.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ to link them together and expose the web app's port.
5656
depends_on:
5757
- db
5858

59+
>**Tip:** You can use either a `.yml` or `.yaml` extension for this file.
60+
61+
5962
### Build the project
6063

6164
With those three files in place, you can now generate the Rails skeleton app
@@ -163,4 +166,4 @@ up`.
163166
- [Get started with Django](django.md)
164167
- [Get started with WordPress](wordpress.md)
165168
- [Command line reference](./reference/index.md)
166-
- [Compose file reference](compose-file.md)
169+
- [Compose file reference](compose-file.md)

compose/wordpress.md

+16-7
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ keywords: documentation, docs, docker, compose, orchestration, containers
44
title: "Quickstart: Compose and WordPress"
55
---
66

7-
You can use Docker Compose to easily run WordPress in an isolated environment built
8-
with Docker containers. This quick-start guide demonstrates how to use Compose to set up and run WordPress. Before starting, you'll need to have
7+
You can use Docker Compose to easily run WordPress in an isolated environment
8+
built with Docker containers. This quick-start guide demonstrates how to use
9+
Compose to set up and run WordPress. Before starting, you'll need to have
910
[Compose installed](install.md).
1011

1112
### Define the project
@@ -14,7 +15,10 @@ with Docker containers. This quick-start guide demonstrates how to use Compose t
1415

1516
You can name the directory something easy for you to remember. This directory is the context for your application image. The directory should only contain resources to build that image.
1617

17-
This project directory will contain a `docker-compose.yaml` file which will be complete in itself for a good starter wordpress project.
18+
This project directory will contain a `docker-compose.yml` file which will
19+
be complete in itself for a good starter wordpress project.
20+
21+
>**Tip:** You can use either a `.yml` or `.yaml` extension for this file. They both work.
1822
1923
2. Change directories into your project directory.
2024

@@ -87,17 +91,22 @@ This pulls the needed images, and starts the wordpress and database containers,
8791
8892
If you're using [Docker Machine](/machine/), then `docker-machine ip MACHINE_VM` gives you the machine address and you can open `http://MACHINE_VM_IP:8000` in a browser.
8993
90-
At this point, WordPress should be running on port `8000` of your Docker Host, and you can complete the "famous five-minute installation" as a WordPress administrator.
94+
At this point, WordPress should be running on port `8000` of your Docker Host,
95+
and you can complete the "famous five-minute installation" as a WordPress
96+
administrator.
9197
92-
**NOTE**: The WordPress site will not be immediately available on port `8000` because the containers are still being initialized and may take a couple of minutes before the first load.
98+
**NOTE**: The WordPress site will not be immediately available on port `8000`
99+
because the containers are still being initialized and may take a couple of
100+
minutes before the first load.
93101
94102
![Choose language for WordPress install](images/wordpress-lang.png)
95103
96104
![WordPress Welcome](images/wordpress-welcome.png)
97105
98106
### Shutdown/Clean up
99-
`docker-compose down` will remove the containers and default network, but preserve your wordpress database.
100-
`docker-compose down --volumes` will remove the containers, default network, and the wordpress database.
107+
`docker-compose down` will remove the containers and default network, but
108+
preserve your wordpress database. `docker-compose down --volumes` will remove
109+
the containers, default network, and the wordpress database.
101110
102111
## More Compose documentation
103112

0 commit comments

Comments
 (0)