Wallarm Docker Aio is an all-in-one Docker image that provides a complete Wallarm Node installation for API security. This image combines Nginx with Wallarm's security modules to protect your applications from various types of attacks.
This Docker image includes:
- Alpine Linux as the base OS
- Nginx web server
- Wallarm Node security modules
- Various Nginx modules for enhanced functionality
- Gomplate for template processing
- Docker installed on your system
- Docker Buildx (for multi-architecture builds)
- Git (for development)
To run the Wallarm Node container:
docker run -d \
-p 80:80 \
-p 443:443 \
-e WALLARM_API_TOKEN='your-api-token' \
-e WALLARM_API_HOST='api.wallarm.com' \
wallarm/node:latest
You can build the image using the provided Makefile:
# Build the image
make docker-image-build
# Build and push to registry
make docker-push
# Run smoke tests
make smoke-test
The container can be configured using environment variables:
WALLARM_API_TOKEN
: Your Wallarm API tokenWALLARM_API_HOST
: Wallarm API host (default: api.wallarm.com)NGINX_BACKEND
: Backend server addressWALLARM_MODE
: Operation mode (block, monitoring, off)
The image supports multiple architectures:
- x86_64 (amd64)
- ARM64 (aarch64)
Current versions used in the build:
- Alpine: 3.20
- Nginx: 1.26.3
- Wallarm AIO: 6.0.2
- Gomplate: 3.11.7
The container runs as a non-root user wallarm
for enhanced security. The image includes:
- Regular security updates
- Minimal attack surface
- Proper capability management
- Secure default configurations
The project includes smoke tests that can be run using:
make smoke-test
For support, please contact Wallarm Support Team at support@wallarm.com or visit our documentation.