Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/compose
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.3.3
Choose a base ref
...
head repository: docker/compose
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.3.4
Choose a head ref
  • 20 commits
  • 39 files changed
  • 5 contributors

Commits on Mar 9, 2022

  1. don't fail trying to remove container with no candidate

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 9, 2022
    Configuration menu
    Copy the full SHA
    5e8040e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9256 from ndeloof/rm_empty

    don't fail trying to remove container with no candidate
    glours authored Mar 9, 2022
    Configuration menu
    Copy the full SHA
    4d163f3 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2022

  1. recreate container after image has been rebuilt/pulled

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    85a4d04 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9261 from ndeloof/recreate_on_image_updated

    recreate container after image has been rebuilt/pulled
    glours authored Mar 10, 2022
    Configuration menu
    Copy the full SHA
    dc6097d View commit details
    Browse the repository at this point in the history
  3. ps: un-deprecate --filter, and enhance docs

    Compose currently only supports a single filter options on --filter,
    for which reason the --status flag was added, which is more convenient
    to use.
    
    However, the `--filter` flag is common among various docker commands, and
    it's possible that additional filters get added at some point (which may
    be less "commonly" used, and not warrant a dedicated flag).
    
    This PR removes the "deprecated" mention from the flag, to keep consistency
    with other commands, but adds documentation to explain how they relate to
    eachother.
    
    Also added a short example for the `--format` flag.
    
    Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
    thaJeztah authored and ndeloof committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    2d32d74 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. Update BUILDING.md

    ndeloof authored Mar 11, 2022
    Configuration menu
    Copy the full SHA
    fbcd7ee View commit details
    Browse the repository at this point in the history
  2. Bump github.com/spf13/cobra from 1.3.0 to 1.4.0

    Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.3.0 to 1.4.0.
    - [Release notes](https://github.com/spf13/cobra/releases)
    - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
    - [Commits](spf13/cobra@v1.3.0...v1.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/spf13/cobra
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and ndeloof committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    2cf917a View commit details
    Browse the repository at this point in the history
  3. Remove DEPRECATED text, since it's just the default

    Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
    ulyssessouza authored and ndeloof committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    6ce57ea View commit details
    Browse the repository at this point in the history
  4. Bump buildx to v0.8.0

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    283f7a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2022

  1. kill only need project name

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 14, 2022
    Configuration menu
    Copy the full SHA
    cd8074d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9280 from ndeloof/kill

    kill only need project name
    glours authored Mar 14, 2022
    Configuration menu
    Copy the full SHA
    730609b View commit details
    Browse the repository at this point in the history
  3. don't remove external volumes/networks

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 14, 2022
    Configuration menu
    Copy the full SHA
    e7f5459 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #9281 from ndeloof/down_volume_external

    don't remove external volumes/networks
    glours authored Mar 14, 2022
    Configuration menu
    Copy the full SHA
    d999c23 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2022

  1. use docker/cli RunExec and RunStart to handle all the interactive/tty…

    …/* terminal logic
    
    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    1d4b4e3 View commit details
    Browse the repository at this point in the history
  2. restore TTY auto-detection using dockerCli.Out.IsTerminal

    Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
    ndeloof committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    c843d37 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2022

  1. generate reference api

    Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
    glours authored and ndeloof committed Mar 18, 2022
    Configuration menu
    Copy the full SHA
    35ba6f6 View commit details
    Browse the repository at this point in the history
  2. contenairized documetation generation

    add docs validation (using same process a BuildX project)
    
    Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
    glours authored and ndeloof committed Mar 18, 2022
    Configuration menu
    Copy the full SHA
    bf26cbd View commit details
    Browse the repository at this point in the history
  3. update CI github actions comment to mention docs validation

    Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
    glours authored and ndeloof committed Mar 18, 2022
    Configuration menu
    Copy the full SHA
    09e0cca View commit details
    Browse the repository at this point in the history
  4. update run no-TTY flag description as auto-detected by default

    Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
    glours authored and ndeloof committed Mar 18, 2022
    Configuration menu
    Copy the full SHA
    099715f View commit details
    Browse the repository at this point in the history
  5. use a temp directory to generate doc to be sure working tree is clean

    Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
    glours authored and ndeloof committed Mar 18, 2022
    Configuration menu
    Copy the full SHA
    be187ba View commit details
    Browse the repository at this point in the history
Loading