docker_compose.yaml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. command: docker compose
  2. short: Docker Compose
  3. long: |-
  4. You can use compose subcommand, `docker compose [-f <arg>...] [options] [COMMAND] [ARGS...]`, to build and manage
  5. multiple services in Docker containers.
  6. ### Use `-f` to specify the name and path of one or more Compose files
  7. Use the `-f` flag to specify the location of a Compose configuration file.
  8. #### Specifying multiple Compose files
  9. You can supply multiple `-f` configuration files. When you supply multiple files, Compose combines them into a single
  10. configuration. Compose builds the configuration in the order you supply the files. Subsequent files override and add
  11. to their predecessors.
  12. For example, consider this command line:
  13. ```console
  14. $ docker compose -f docker-compose.yml -f docker-compose.admin.yml run backup_db
  15. ```
  16. The `docker-compose.yml` file might specify a `webapp` service.
  17. ```yaml
  18. services:
  19. webapp:
  20. image: examples/web
  21. ports:
  22. - "8000:8000"
  23. volumes:
  24. - "/data"
  25. ```
  26. If the `docker-compose.admin.yml` also specifies this same service, any matching fields override the previous file.
  27. New values, add to the `webapp` service configuration.
  28. ```yaml
  29. services:
  30. webapp:
  31. build: .
  32. environment:
  33. - DEBUG=1
  34. ```
  35. When you use multiple Compose files, all paths in the files are relative to the first configuration file specified
  36. with `-f`. You can use the `--project-directory` option to override this base path.
  37. Use a `-f` with `-` (dash) as the filename to read the configuration from stdin. When stdin is used all paths in the
  38. configuration are relative to the current working directory.
  39. The `-f` flag is optional. If you don’t provide this flag on the command line, Compose traverses the working directory
  40. and its parent directories looking for a `compose.yaml` or `docker-compose.yaml` file.
  41. #### Specifying a path to a single Compose file
  42. You can use the `-f` flag to specify a path to a Compose file that is not located in the current directory, either
  43. from the command line or by setting up a `COMPOSE_FILE` environment variable in your shell or in an environment file.
  44. For an example of using the `-f` option at the command line, suppose you are running the Compose Rails sample, and
  45. have a `compose.yaml` file in a directory called `sandbox/rails`. You can use a command like `docker compose pull` to
  46. get the postgres image for the db service from anywhere by using the `-f` flag as follows:
  47. ```console
  48. $ docker compose -f ~/sandbox/rails/compose.yaml pull db
  49. ```
  50. ### Use `-p` to specify a project name
  51. Each configuration has a project name. Compose sets the project name using
  52. the following mechanisms, in order of precedence:
  53. - The `-p` command line flag
  54. - The `COMPOSE_PROJECT_NAME` environment variable
  55. - The top level `name:` variable from the config file (or the last `name:`
  56. from a series of config files specified using `-f`)
  57. - The `basename` of the project directory containing the config file (or
  58. containing the first config file specified using `-f`)
  59. - The `basename` of the current directory if no config file is specified
  60. Project names must contain only lowercase letters, decimal digits, dashes,
  61. and underscores, and must begin with a lowercase letter or decimal digit. If
  62. the `basename` of the project directory or current directory violates this
  63. constraint, you must use one of the other mechanisms.
  64. ```console
  65. $ docker compose -p my_project ps -a
  66. NAME SERVICE STATUS PORTS
  67. my_project_demo_1 demo running
  68. $ docker compose -p my_project logs
  69. demo_1 | PING localhost (127.0.0.1): 56 data bytes
  70. demo_1 | 64 bytes from 127.0.0.1: seq=0 ttl=64 time=0.095 ms
  71. ```
  72. ### Use profiles to enable optional services
  73. Use `--profile` to specify one or more active profiles
  74. Calling `docker compose --profile frontend up` will start the services with the profile `frontend` and services
  75. without any specified profiles.
  76. You can also enable multiple profiles, e.g. with `docker compose --profile frontend --profile debug up` the profiles `frontend` and `debug` will be enabled.
  77. Profiles can also be set by `COMPOSE_PROFILES` environment variable.
  78. ### Configuring parallelism
  79. Use `--parallel` to specify the maximum level of parallelism for concurrent engine calls.
  80. Calling `docker compose --parallel 1 pull` will pull the pullable images defined in the Compose file
  81. one at a time. This can also be used to control build concurrency.
  82. Parallelism can also be set by the `COMPOSE_PARALLEL_LIMIT` environment variable.
  83. ### Set up environment variables
  84. You can set environment variables for various docker compose options, including the `-f`, `-p` and `--profiles` flags.
  85. Setting the `COMPOSE_FILE` environment variable is equivalent to passing the `-f` flag,
  86. `COMPOSE_PROJECT_NAME` environment variable does the same as the `-p` flag,
  87. `COMPOSE_PROFILES` environment variable is equivalent to the `--profiles` flag
  88. and `COMPOSE_PARALLEL_LIMIT` does the same as the `--parallel` flag.
  89. If flags are explicitly set on the command line, the associated environment variable is ignored.
  90. Setting the `COMPOSE_IGNORE_ORPHANS` environment variable to `true` will stop docker compose from detecting orphaned
  91. containers for the project.
  92. ### Use Dry Run mode to test your command
  93. Use `--dry-run` flag to test a command without changing your application stack state.
  94. Dry Run mode shows you all the steps Compose applies when executing a command, for example:
  95. ```console
  96. $ docker compose --dry-run up --build -d
  97. [+] Pulling 1/1
  98. ✔ DRY-RUN MODE - db Pulled 0.9s
  99. [+] Running 10/8
  100. ✔ DRY-RUN MODE - build service backend 0.0s
  101. ✔ DRY-RUN MODE - ==> ==> writing image dryRun-754a08ddf8bcb1cf22f310f09206dd783d42f7dd 0.0s
  102. ✔ DRY-RUN MODE - ==> ==> naming to nginx-golang-mysql-backend 0.0s
  103. ✔ DRY-RUN MODE - Network nginx-golang-mysql_default Created 0.0s
  104. ✔ DRY-RUN MODE - Container nginx-golang-mysql-db-1 Created 0.0s
  105. ✔ DRY-RUN MODE - Container nginx-golang-mysql-backend-1 Created 0.0s
  106. ✔ DRY-RUN MODE - Container nginx-golang-mysql-proxy-1 Created 0.0s
  107. ✔ DRY-RUN MODE - Container nginx-golang-mysql-db-1 Healthy 0.5s
  108. ✔ DRY-RUN MODE - Container nginx-golang-mysql-backend-1 Started 0.0s
  109. ✔ DRY-RUN MODE - Container nginx-golang-mysql-proxy-1 Started Started
  110. ```
  111. From the example above, you can see that the first step is to pull the image defined by `db` service, then build the `backend` service.
  112. Next, the containers are created. The `db` service is started, and the `backend` and `proxy` wait until the `db` service is healthy before starting.
  113. Dry Run mode works with almost all commands. You cannot use Dry Run mode with a command that doesn't change the state of a Compose stack such as `ps`, `ls`, `logs` for example.
  114. usage: docker compose
  115. pname: docker
  116. plink: docker.yaml
  117. cname:
  118. - docker compose build
  119. - docker compose config
  120. - docker compose cp
  121. - docker compose create
  122. - docker compose down
  123. - docker compose events
  124. - docker compose exec
  125. - docker compose images
  126. - docker compose kill
  127. - docker compose logs
  128. - docker compose ls
  129. - docker compose pause
  130. - docker compose port
  131. - docker compose ps
  132. - docker compose pull
  133. - docker compose push
  134. - docker compose restart
  135. - docker compose rm
  136. - docker compose run
  137. - docker compose scale
  138. - docker compose start
  139. - docker compose stop
  140. - docker compose top
  141. - docker compose unpause
  142. - docker compose up
  143. - docker compose version
  144. - docker compose wait
  145. - docker compose watch
  146. clink:
  147. - docker_compose_build.yaml
  148. - docker_compose_config.yaml
  149. - docker_compose_cp.yaml
  150. - docker_compose_create.yaml
  151. - docker_compose_down.yaml
  152. - docker_compose_events.yaml
  153. - docker_compose_exec.yaml
  154. - docker_compose_images.yaml
  155. - docker_compose_kill.yaml
  156. - docker_compose_logs.yaml
  157. - docker_compose_ls.yaml
  158. - docker_compose_pause.yaml
  159. - docker_compose_port.yaml
  160. - docker_compose_ps.yaml
  161. - docker_compose_pull.yaml
  162. - docker_compose_push.yaml
  163. - docker_compose_restart.yaml
  164. - docker_compose_rm.yaml
  165. - docker_compose_run.yaml
  166. - docker_compose_scale.yaml
  167. - docker_compose_start.yaml
  168. - docker_compose_stop.yaml
  169. - docker_compose_top.yaml
  170. - docker_compose_unpause.yaml
  171. - docker_compose_up.yaml
  172. - docker_compose_version.yaml
  173. - docker_compose_wait.yaml
  174. - docker_compose_watch.yaml
  175. options:
  176. - option: ansi
  177. value_type: string
  178. default_value: auto
  179. description: |
  180. Control when to print ANSI control characters ("never"|"always"|"auto")
  181. deprecated: false
  182. hidden: false
  183. experimental: false
  184. experimentalcli: false
  185. kubernetes: false
  186. swarm: false
  187. - option: compatibility
  188. value_type: bool
  189. default_value: "false"
  190. description: Run compose in backward compatibility mode
  191. deprecated: false
  192. hidden: false
  193. experimental: false
  194. experimentalcli: false
  195. kubernetes: false
  196. swarm: false
  197. - option: dry-run
  198. value_type: bool
  199. default_value: "false"
  200. description: Execute command in dry run mode
  201. deprecated: false
  202. hidden: false
  203. experimental: false
  204. experimentalcli: false
  205. kubernetes: false
  206. swarm: false
  207. - option: env-file
  208. value_type: stringArray
  209. default_value: '[]'
  210. description: Specify an alternate environment file.
  211. deprecated: false
  212. hidden: false
  213. experimental: false
  214. experimentalcli: false
  215. kubernetes: false
  216. swarm: false
  217. - option: file
  218. shorthand: f
  219. value_type: stringArray
  220. default_value: '[]'
  221. description: Compose configuration files
  222. deprecated: false
  223. hidden: false
  224. experimental: false
  225. experimentalcli: false
  226. kubernetes: false
  227. swarm: false
  228. - option: no-ansi
  229. value_type: bool
  230. default_value: "false"
  231. description: Do not print ANSI control characters (DEPRECATED)
  232. deprecated: false
  233. hidden: true
  234. experimental: false
  235. experimentalcli: false
  236. kubernetes: false
  237. swarm: false
  238. - option: parallel
  239. value_type: int
  240. default_value: "-1"
  241. description: Control max parallelism, -1 for unlimited
  242. deprecated: false
  243. hidden: false
  244. experimental: false
  245. experimentalcli: false
  246. kubernetes: false
  247. swarm: false
  248. - option: profile
  249. value_type: stringArray
  250. default_value: '[]'
  251. description: Specify a profile to enable
  252. deprecated: false
  253. hidden: false
  254. experimental: false
  255. experimentalcli: false
  256. kubernetes: false
  257. swarm: false
  258. - option: progress
  259. value_type: string
  260. default_value: auto
  261. description: Set type of progress output (auto, tty, plain, quiet)
  262. deprecated: false
  263. hidden: false
  264. experimental: false
  265. experimentalcli: false
  266. kubernetes: false
  267. swarm: false
  268. - option: project-directory
  269. value_type: string
  270. description: |-
  271. Specify an alternate working directory
  272. (default: the path of the, first specified, Compose file)
  273. deprecated: false
  274. hidden: false
  275. experimental: false
  276. experimentalcli: false
  277. kubernetes: false
  278. swarm: false
  279. - option: project-name
  280. shorthand: p
  281. value_type: string
  282. description: Project name
  283. deprecated: false
  284. hidden: false
  285. experimental: false
  286. experimentalcli: false
  287. kubernetes: false
  288. swarm: false
  289. - option: verbose
  290. value_type: bool
  291. default_value: "false"
  292. description: Show more output
  293. deprecated: false
  294. hidden: true
  295. experimental: false
  296. experimentalcli: false
  297. kubernetes: false
  298. swarm: false
  299. - option: version
  300. shorthand: v
  301. value_type: bool
  302. default_value: "false"
  303. description: Show the Docker Compose version information
  304. deprecated: false
  305. hidden: true
  306. experimental: false
  307. experimentalcli: false
  308. kubernetes: false
  309. swarm: false
  310. - option: workdir
  311. value_type: string
  312. description: |-
  313. DEPRECATED! USE --project-directory INSTEAD.
  314. Specify an alternate working directory
  315. (default: the path of the, first specified, Compose file)
  316. deprecated: false
  317. hidden: true
  318. experimental: false
  319. experimentalcli: false
  320. kubernetes: false
  321. swarm: false
  322. deprecated: false
  323. hidden: false
  324. experimental: false
  325. experimentalcli: false
  326. kubernetes: false
  327. swarm: false