map.meshcore.io-uploader

(★ 33)

MeshCore map auto uploader

파일 탐색기

  • docker-compose.yml
  • Dockerfile
  • index.mjs
  • LICENSE
  • package.json
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

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:

🔍

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`:

🔍

podman build

설명 보기 ▼

Daemonless tool for building container images.

podman build {{path/to/directory}}

Create an image using a `Dockerfile` or `Containerfile` in the specified directory:

podman build {{[-t|--tag]}} {{image_name:version}} {{path/to/directory}}

Create an image with a specified tag:

podman build {{[-f|--file]}} {{Containerfile.different}} .

Create an image from a non-standard file:

🔍

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:

🔍

podman

설명 보기 ▼

파드, 컨테이너 및 이미지의 간단한 관리 도구.
Podman은 Docker-CLI와 유사한 명령줄을 제공합니다. 간단히 말해: `alias docker=podman`.
더 많은 정보: <https://github.com/containers/podman/blob/main/commands-demo.md>.

podman ps {{[-a|--all]}}

모든 컨테이너 나열 (실행 중 및 중지됨 모두 포함):

podman run --name {{container_name}} {{image}}

이미지에서 사용자 정의 이름으로 컨테이너 생성:

podman {{start|stop}} {{container_name}}

기존 컨테이너 시작 또는 중지:

🔍

journalctl

설명 보기 ▼

systemd 저널을 조회합니다.
관련 항목: `dmesg`.
더 많은 정보: <https://www.freedesktop.org/software/systemd/man/latest/journalctl.html>.

journalctl {{[-n|--lines]}} {{n}} {{[-f|--follow]}}

현재 부트에서 우선순위 레벨 3(오류)로 모든 메시지 표시:

journalctl {{[-b|--boot]}} -1 {{[-p|--priority]}} 3

2일 이상된 저널 로그 삭제:

journalctl {{[-u|--unit]}} {{unit}}

마지막 N줄만 표시하고 새 메시지를 팔로우(전통적인 syslog의 `tail -f`처럼) 표시:

🔍

systemctl

설명 보기 ▼

systemd 시스템 및 서비스 관리자를 제어합니다.
더 많은 정보: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html>.

systemctl status

실행 중인 서비스 모두 표시:

systemctl --failed

실패한 유닛 나열:

systemctl {{start|stop|restart|reload|status}} {{unit}}

서비스 시작/중지/재시작/재로드/상태 표시:

// repository documentation