- Restructure repo into docker/ and native/ deployment types with a shared common/wallarm-lib.sh (logging, detection, validation, connectivity, env parsing) - Move Docker scripts + artifacts (binaries/, images/) under docker/ (git mv, history preserved) - Refactor Docker scripts to source the shared library; update artifact URLs - Add native/ scripts for no-Docker deployment using the Wallarm all-in-one installer (check, deploy, reconfigure, uninstall) with version pinning via WALLARM_VERSION - Add native/wallarm-native.sh unified node manager (Wallarm Native Node, connector mode) with preflight checks, parallel multi-node install, config/remove/status - Update setup.sh to download scripts per deployment type (DEPLOYMENT_TYPE=...) - Update README.md and changelog.md
15 lines
412 B
Markdown
15 lines
412 B
Markdown
# Wallarm Docker Images
|
|
|
|
This directory contains Wallarm node Docker images for offline deployment.
|
|
|
|
- `wallarm-node-6.11.0-rc1.tar.gz`: Wallarm node version 6.11.0-rc1
|
|
- `wallarm-node-6.11.0-rc1.tar.gz.sha256`: SHA256 checksum for verification
|
|
|
|
## Usage
|
|
```bash
|
|
# Verify integrity
|
|
sha256sum -c wallarm-node-6.11.0-rc1.tar.gz.sha256
|
|
|
|
# Load into Docker
|
|
gunzip -c wallarm-node-6.11.0-rc1.tar.gz | docker load
|
|
```
|