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

several fix as note in the commit message #689

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Commits on May 4, 2023

  1. pod switch revert to --no-pod, pod enabled by default

    . `--no-pod` is much more intuitive
    . to disable pod creation, just create a wrapper for `podman-compoose`, e.g.:
    
    	m_compose() {
    		local M_ARGS="--no-pod"
    		podman-compose $M_ARGS "$@"
    	}
    
    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    705cd2c View commit details
    Browse the repository at this point in the history
  2. support network for build

    compose spec: `network` for build added in v3.4
    
    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    8c1aa5e View commit details
    Browse the repository at this point in the history
  3. fix exception for --dry-run

    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    0f14310 View commit details
    Browse the repository at this point in the history
  4. trim whitespaces for bash completion config

    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    7015b8b View commit details
    Browse the repository at this point in the history
  5. fix support for network_mode: none

    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    9d5434c View commit details
    Browse the repository at this point in the history
  6. respect container name

    TODO: avoid confliction
    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    b8e35e7 View commit details
    Browse the repository at this point in the history
  7. add --no-label switch to disable default labels

    Signed-off-by: giskard <rtgiskard@gmail.com>
    rtgiskard committed May 4, 2023
    Configuration menu
    Copy the full SHA
    499fcec View commit details
    Browse the repository at this point in the history