File tree Expand file tree Collapse file tree 4 files changed +29
-0
lines changed
Expand file tree Collapse file tree 4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ function docker::config::main::factory {
3131 docker* )
3232 # shellcheck source=/dev/null
3333 source " ${ZSH_DOCKER_PATH} " /config/docker.zsh
34+ ;;
35+ orbstack* )
36+ # shellcheck source=/dev/null
37+ source " ${ZSH_DOCKER_PATH} " /config/orbstack.zsh
3438 ;;
3539 esac
3640}
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env ksh
2+ # -*- coding: utf-8 -*-
3+
4+ function container::core {
5+ alias docker=docker
6+ }
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ function docker::internal::main::factory {
3131 docker* )
3232 # shellcheck source=/dev/null
3333 source " ${ZSH_DOCKER_PATH} " /internal/docker.zsh
34+ ;;
35+ orbstack* )
36+ # shellcheck source=/dev/null
37+ source " ${ZSH_DOCKER_PATH} " /internal/orbstack.zsh
3438 ;;
3539 esac
3640 # shellcheck source=/dev/null
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env ksh
2+ # -*- coding: utf-8 -*-
3+
4+ function container::internal::container::install {
5+ if core::exists docker; then
6+ return
7+ fi
8+ message_info " Installing ${ZSH_DOCKER_PACKAGE_NAME} "
9+ core::install orbstack
10+ message_success " Installed ${ZSH_DOCKER_PACKAGE_NAME} "
11+ }
12+
13+ function container::internal::container::load {
14+ return
15+ }
You can’t perform that action at this time.
0 commit comments