Docklet
A lightweight desktop client for Docker
파일 탐색기
- build.yml
- Info.dev.plist
- Info.plist
- project.nsi
- wails_tools.nsh
- icon.ico
- info.json
- wails.exe.manifest
- appicon.png
- README.md
- dashboard.png
- metrics.png
- run-container.png
- favicon.ico
- file.svg
- globe.svg
- next.svg
- vercel.svg
- window.svg
- useContainers.ts
- useDocker.ts
- useImages.ts
- usePullImage.ts
- favicon.ico
- globals.css
- layout.tsx
- page.tsx
- bottom-log-terminal.tsx
- containers-view.tsx
- log-viewer-modal.tsx
- stats-modal.tsx
- active-containers-table.tsx
- cpu-chart-card.tsx
- dashboard.tsx
- memory-card.tsx
- port-fowarding-card.tsx
- privacy-card.tsx
- background-pull-widget.tsx
- images-view.tsx
- pull-image-modal.tsx
- run-image-modal.tsx
- header.tsx
- alert-dialog.tsx
- alert-modal.tsx
- button.tsx
- confirm-dialog.tsx
- dialog.tsx
- input.tsx
- live-line-chart.tsx
- docker.ts
- utils.ts
- docker.ts
- components.json
- next-env.d.ts
- next.config.ts
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- tsconfig.json
- dashboard.png
- metrics.png
- run-container.png
- favicon.ico
- globals.css
- icon.png
- layout.tsx
- page.tsx
- comparison.tsx
- features.tsx
- hero-download.tsx
- screenshot-showcase.tsx
- footer.tsx
- header.tsx
- analytics.tsx
- next-env.d.ts
- next.config.ts
- package-lock.json
- package.json
- postcss.config.mjs
- tsconfig.json
- .gitignore
- app.go
- docker_service.go
- go.mod
- go.sum
- LICENSE
- main.go
- README.md
- types.go
- utils.go
- wails.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
go install
설명 보기 ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
apt install
설명 보기 ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
apt
설명 보기 ▼
apt
Debian 기반 배포판을 위한 패키지 관리 도구.
Ubuntu 16.04 이후 버전에서 대화형 사용 시 `apt-get`의 권장 대체 도구.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/apt.8>.
sudo apt update
사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt` 명령어 실행 전 권장):
apt search {{package}}
주어진 패키지 검색:
apt list {{package}}
패키지 정보 표시:
dnf install
설명 보기 ▼
dnf install
Install packages on Red Hat-based distributions.
sudo dnf {{[in|install]}} {{package1 package2 ...}}
Install packages by name:
sudo dnf {{[in|install]}} {{path/to/file}}
Install a package from a local file:
sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}
Install a package from the internet:
pacman -S
설명 보기 ▼
pacman -S
This command is an alias of `pacman --sync`.
tldr pacman sync
View documentation for the original command:
xcode-select
설명 보기 ▼
xcode-select
Xcode의 다양한 버전과 포함된 개발자 도구 간에 전환.
설치 후 Xcode가 이동된 경우 경로를 업데이트하는 데 사용됩니다.
더 많은 정보: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.
xcode-select --install
Xcode의 명령줄 도구 설치:
xcode-select --switch {{path/to/Xcode.app/Contents/Developer}}
주어진 경로를 활성 개발자 디렉토리로 선택:
xcode-select --switch {{path/to/Xcode_file.app}}
주어진 Xcode 인스턴스를 선택하고 해당 개발자 디렉토리를 활성 디렉토리로 사용:
