docker-utils
external utilities for the docker experience
파일 탐색기
- main.go
- README.md
- .godir
- main.go
- README.md
- main.go
- main.go
- main.go
- dockerfile.go
- Dockerfile
- Dockerfile.build
- Makefile
- README.md
- README.md
- list.go
- list_test.go
- fetch.go
- fetch_test.go
- imageref.go
- registryv1.go
- extract.go
- registry.go
- checks.go
- checks_test.go
- layer.go
- versioncheck.go
- versioncheck_test.go
- version.go
- .travis.yml
- Dockerfile
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
docker save
설명 보기 ▼
docker save
This command is an alias of `docker image save`.
tldr docker image save
View documentation for the original command:
go get
설명 보기 ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
gpg
설명 보기 ▼
gpg
GNU Privacy Guard.
관련 항목: `sq`.
더 많은 정보: <https://gnupg.org/documentation/manuals/gnupg/Invoking-GPG.html>.
gpg {{[--full-gen-key|--full-generate-key]}}
GPG 공개 및 개인 키를 대화형으로 생성:
gpg {{[-k|--list-keys]}}
암호화 없이 `doc.txt`에 서명 (`doc.txt.asc`에 출력을 기록):
gpg --clearsign {{doc.txt}}
[email protected] 및 [email protected]에 대해 `doc.txt`를 암호화하고 서명 (`doc.txt.gpg`로 출력):
tar
설명 보기 ▼
tar
아카이브 유틸리티.
종종 `gzip` 또는 `bzip2`와 같은 압축 방법과 결합하여 사용됩니다.
더 많은 정보: <https://www.gnu.org/software/tar/manual/tar.html>.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
g[z]ipped 아카이브 생성 후 파일로 저장:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
디렉토리에서 상대 경로를 사용하여 g[z]ipped (압축된) 아카이브 생성:
# 프로젝트 배지
-
Build Status 바로가기
