소스 검색

homebrew podman

Tom McKenzie 2 년 전
부모
커밋
0cdedc4802
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .rc.d/aliases.sh

+ 1 - 1
.rc.d/aliases.sh

@@ -17,7 +17,7 @@ alias duh="du -sh * | sort -h"
 alias export-env="export \$(grep -v '^#' .env | xargs -0)"
 
 # docker / podman
-if [ -f '/usr/bin/podman' ]; then
+if [ -f '/usr/bin/podman' ] || [ -f '/opt/homebrew/bin/podman' ]; then
   alias docker='podman'
   alias docker-compose='podman-compose'
   alias dc='docker-compose'