mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
* Reword lots of instances of 'will' * Reword lots of instances of won't * Reword lots of instances of we'll * Eradicate you'll * Eradicate 'be able to' type of phrases * Eradicate 'unable to' type of phrases * Eradicate 'has / have to' type of phrases * Eradicate 'note that' type of phrases * Eradicate 'in order to' type of phrases * Redirect to official Chef and Puppet docs * Eradicate gratuitous 'please' * Reduce use of e.g. * Reduce use of i.e. * Reduce use of N.B. * Get rid of 'sexagesimal' and correct some errors
26 lines
923 B
Markdown
26 lines
923 B
Markdown
---
|
|
description: Create a distributed application bundle from the Compose file.
|
|
keywords: fig, composition, compose, docker, orchestration, cli, bundle
|
|
title: docker-compose bundle
|
|
notoc: true
|
|
---
|
|
|
|
```
|
|
Usage: bundle [options]
|
|
|
|
Options:
|
|
--push-images Automatically push images for any services
|
|
which have a `build` option specified.
|
|
|
|
-o, --output PATH Path to write the bundle file to.
|
|
Defaults to "<project name>.dab".
|
|
```
|
|
|
|
Generate a Distributed Application Bundle (DAB) from the Compose file.
|
|
|
|
Images must have digests stored, which requires interaction with a
|
|
Docker registry. If digests aren't stored for all images, you can fetch
|
|
them with `docker-compose pull` or `docker-compose push`. To push images
|
|
automatically when bundling, pass `--push-images`. Only services with
|
|
a `build` option specified have their images pushed.
|