mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Clearer introduction
This commit is contained in:
parent
00f5c3bb85
commit
cc29b21bfc
@ -5,7 +5,7 @@ title: Fig | Fast, isolated development environments using Docker
|
||||
|
||||
<strong class="strapline">Fast, isolated development environments using Docker.</strong>
|
||||
|
||||
Define your app's environment with Docker so it can be reproduced anywhere.
|
||||
Define your app's environment with Docker so it can be reproduced anywhere:
|
||||
|
||||
FROM orchardup/python:2.7
|
||||
ADD . /code
|
||||
@ -13,7 +13,7 @@ Define your app's environment with Docker so it can be reproduced anywhere.
|
||||
WORKDIR /code
|
||||
CMD python app.py
|
||||
|
||||
Define your app's services so they can be run alongside in an isolated environment. (No more installing Postgres on your laptop!)
|
||||
Define your app's services so they can be run alongside in an isolated environment:
|
||||
|
||||
```yaml
|
||||
web:
|
||||
@ -26,6 +26,8 @@ db:
|
||||
image: orchardup/postgresql
|
||||
```
|
||||
|
||||
(No more installing Postgres on your laptop!)
|
||||
|
||||
Then type `fig up`, and Fig will start and run your entire app:
|
||||
|
||||

|
||||
|
Loading…
x
Reference in New Issue
Block a user