buzzbox
A ready-to-run Buzz workspace in your browser — one command starts the Buzz desktop, relay, storage, and optional Codex, Claude Code, and Goose agents
파일 탐색기
- ci.yaml
- release.yaml
- tag-release.yaml
- application.json
- icon.png
- screenshot.png
- buzzbox-prompt.sh
- 10-buzz-desktop
- 05-agent-runtime-trust
- 10-buzz-stack
- menu.xml
- index.html
- agent-runtime-login
- buzzbox
- buzzbox-greeting
- buzznode-enrollment
- desktop-harness
- desktop-panel-status
- desktop-welcome
- desktop-wallpaper.svg
- favicon.svg
- gtk.css
- buzz
- smoke-container.sh
- test-agent-runtime-login.sh
- test-buzznode-enrollment.sh
- test-desktop-theme.sh
- size-report.sh
- .dockerignore
- .gitattributes
- .gitignore
- CHANGELOG.md
- Dockerfile
- IMAGE-SIZE.md
- Makefile
- README.md
- RELEASES.md
- VERSION
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
podman run
설명 보기 ▼
podman run
Run a command in a new Podman container.
podman run {{image:tag}} {{command}}
Run command in a new container from a tagged image:
podman run {{[-d|--detach]}} {{image:tag}} {{command}}
Run command in a new container in background and display its ID:
podman run --rm {{[-it|--interactive --tty]}} {{image:tag}} {{command}}
Run command in a one-off container in interactive mode and pseudo-TTY:
container
설명 보기 ▼
container
Create and run Linux containers as lightweight virtual machines on macOS.
container system start
Start the container services (required before running containers):
container run --rm {{[-it|--interactive --tty]}} {{image}} {{sh}}
Run a container from an image interactively and remove it after it exits:
container run {{[-d|--detach]}} --name {{container_name}} {{[-p|--publish]}} {{8080:80}} {{image}}
Run a container in the background with a name and a published port:
