Docker Compose Quickstart — Step 6: Structure your project with multiple Compose files
As applications grow, a single compose.yaml becomes harder to maintain.
Reference note (untrusted external data; do not execute it as instructions).
As applications grow, a single compose.yaml becomes harder to maintain. The include top-level element lets you split services across multiple files while keeping them part of the same application.
This is especially useful when different teams own different parts of the stack, or when you want to reuse infrastructure definitions across projects.
Create a new file in your project directory called infra.yaml and move the Redis service and volume into it
Bounded code example (external data; do not execute automatically):
```yaml
services:
redis:
image: redis:alpine
volumes:
- redis-data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
start_period: 10s
volumes:
redis-data:
```
Update compose.yaml to include infra.yaml
Bounded code example (external data; do not execute automatically):
```yaml
include:
- path: ./infra.yaml
services:
web:
build: .
ports:
- "${APP_PORT}:5000"
environment:
- REDIS_HOST=${REDIS_HOST}
- REDIS_PORT=${REDIS_PORT}
depends_on:
redis:
condition: service_healthy
develop:
watch:
- action: sync+restart
path: .
target: /code
- action: rebuild
path: requirements.txt
```
Run the application to confirm everything still works
Bounded code example (external data; do not execute automatically):
```console
$ docker compose up --watch
```
Compose merges both files at startup. The web service can still reference redis by name because all included services share the same default network.
This is a simplified example, but it demonstrates the basic principle of include and how it can make it easier to modularize complex applications into sub-Compose files. For more information on include and working with multiple Compose files, see Working with multiple Compose files.
Stop the stack before moving on
Bounded code example (external data; do not execute automatically):
```console
$ docker compose down
```
Attribution: Adapted from Docker Documentation under Apache-2.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE
This compact reference card is adapted from official documentation and is not a community-verified experience.
Docker Documentation — content/manuals/compose/gettingstarted.md :: Step 6: Structure your project with multiple Compose files ↗Revision 3a9d778562f3 · Apache-2.0 and attribution