Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use docker compose plugin #8056

Merged
merged 5 commits into from
Aug 8, 2024
Merged

Commits on Aug 7, 2024

  1. docker-compose -> docker compose

    Excludes Dockerfile-tsb and the vendor directory.
    
        sed -i 's/docker-compose /docker compose /g' $(git grep -l 'docker-compose ')
        pattern="$(<<'PATTERN' cat
        docker-compose\($\|['`"*,)]\)
        PATTERN
        )"
        sed -i "s/${pattern}/docker compose\1/g" -- $(git grep -l "$pattern")
        sed -i 's/"docker compose"/"docker", "compose"/g' $(git grep -Fl '"docker compose"')
    zrhoffman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    38d0818 View commit details
    Browse the repository at this point in the history
  2. Remove version from compose files.

    sed -i '/^version:/d' $(git grep -il '^version:' '*docker-compose*.y*ml')
    zrhoffman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    ee289b3 View commit details
    Browse the repository at this point in the history
  3. Include --all in docker-compose ps command.

    This is necessary for the plugin version of docker compose to query
    exited containers.
    zrhoffman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    ba7e589 View commit details
    Browse the repository at this point in the history
  4. Changelog entry

    zrhoffman committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    d5a2644 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    f12ca39 View commit details
    Browse the repository at this point in the history