map.meshcore.io-uploader
MeshCore map auto uploader
File Explorer
- index.mjs
- supercop.wasm
- docker-compose.yml
- Dockerfile
- index.mjs
- LICENSE
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
podman
Simple management tool for pods, containers, and images.
Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`.
podman ps {{[-a|--all]}}
List all containers (both running and stopped):
podman run --name {{container_name}} {{image}}
Create a container from an image, with a custom name:
podman {{start|stop}} {{container_name}}
Start or stop an existing container:
journalctl
View Details ▼
journalctl
Query the systemd journal.
See also: `dmesg`.
journalctl {{[-n|--lines]}} {{n}} {{[-f|--follow]}}
Show the latest `n` lines and follow new messages (like `tail --follow` for traditional syslog):
journalctl {{[-b|--boot]}} -1 {{[-p|--priority]}} 3
Show all messages with priority level 3 (errors) from the boot before last shutdown:
journalctl {{[-u|--unit]}} {{unit}}
Show all messages by a specific unit:
systemctl
View Details ▼
systemctl
Control the systemd system and service manager.
Some subcommands such as `disable`, `status`, `reboot` etc. have their own usage documentation.
systemctl status
Show all running services:
systemctl --failed
List failed units:
systemctl {{start|stop|restart|reload|status}} {{unit}}
Start/Stop/Restart/Reload/Show the status of a service:
