mirror of
https://github.com/docker/compose.git
synced 2025-07-21 04:34:38 +02:00
Update guides to use v2 config format.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
4de12ad7a1
commit
471264239f
@ -72,6 +72,8 @@ and a `docker-compose.yml` file.
|
|||||||
|
|
||||||
9. Add the following configuration to the file.
|
9. Add the following configuration to the file.
|
||||||
|
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres
|
image: postgres
|
||||||
web:
|
web:
|
||||||
@ -81,7 +83,7 @@ and a `docker-compose.yml` file.
|
|||||||
- .:/code
|
- .:/code
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
links:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
|
||||||
This file defines two services: The `db` service and the `web` service.
|
This file defines two services: The `db` service and the `web` service.
|
||||||
|
@ -95,13 +95,16 @@ Define a set of services using `docker-compose.yml`:
|
|||||||
1. Create a file called docker-compose.yml in your project directory and add
|
1. Create a file called docker-compose.yml in your project directory and add
|
||||||
the following:
|
the following:
|
||||||
|
|
||||||
|
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
volumes:
|
volumes:
|
||||||
- .:/code
|
- .:/code
|
||||||
links:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
@ -49,6 +49,8 @@ one's Docker image (the database just runs on a pre-made PostgreSQL image, and
|
|||||||
the web app is built from the current directory), and the configuration needed
|
the web app is built from the current directory), and the configuration needed
|
||||||
to link them together and expose the web app's port.
|
to link them together and expose the web app's port.
|
||||||
|
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres
|
image: postgres
|
||||||
web:
|
web:
|
||||||
@ -58,7 +60,7 @@ to link them together and expose the web app's port.
|
|||||||
- .:/myapp
|
- .:/myapp
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
links:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
|
||||||
### Build the project
|
### Build the project
|
||||||
|
@ -41,12 +41,14 @@ and WordPress.
|
|||||||
Next you'll create a `docker-compose.yml` file that will start your web service
|
Next you'll create a `docker-compose.yml` file that will start your web service
|
||||||
and a separate MySQL instance:
|
and a separate MySQL instance:
|
||||||
|
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
command: php -S 0.0.0.0:8000 -t /code
|
command: php -S 0.0.0.0:8000 -t /code
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
links:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
volumes:
|
volumes:
|
||||||
- .:/code
|
- .:/code
|
||||||
|
Loading…
x
Reference in New Issue
Block a user