images
rfswift images
Manage Docker images - list local images, browse remote registry, and pull images.
Synopsis
# List local images
rfswift images local
# List remote registry images
rfswift images remote
# Pull image from registry
rfswift images pull -i IMAGE_NAME [-t TAG]The images command provides comprehensive image management: view locally available images, discover images in the RF Swift registry, and pull images from Docker registries.
Subcommands
images local
List all RF Swift images present on the local system.
Usage:
rfswift images localOutput includes:
- Image repository and tag
- Image ID
- Creation date
- Image size
images remote
List available RF Swift images from the official Penthertz registry.
Usage:
rfswift images remoteOutput includes:
- Available image names
- Image descriptions
- Available tags/versions
images pull
Pull images from Docker registries to local system.
Usage:
rfswift images pull -i IMAGE_NAME [-t TAG]Options:
| Flag | Description | Required | Example |
|---|---|---|---|
-i, --image STRING |
Image reference to pull | Yes | -i penthertz/rfswift_noble:sdr_full |
-t, --tag STRING |
Rename to target tag locally | No | -t my_sdr:v1 |
Examples
List Local Images
View all local RF Swift images:
rfswift images localExample output:
REPOSITORY TAG IMAGE ID CREATED SIZE
penthertz/rfswift_noble sdr_full a1b2c3d4e5f6 2 weeks ago 4.2GB
penthertz/rfswift_noble bluetooth b2c3d4e5f6g7 3 weeks ago 2.1GB
my_custom_sdr v1.0 c3d4e5f6g7h8 1 day ago 3.8GBBrowse Remote Images
See available images in registry:
rfswift images remoteExample output:
Available RF Swift Images:
sdr_full - Complete SDR toolkit with all tools
sdr_light - Lightweight SDR environment
bluetooth - Bluetooth security and analysis tools
wifi - WiFi security and penetration testing
hardware - Hardware security and reverse engineering
automotive - Automotive security (CAN, V2X)
telecom - Telecommunications security (2G-5G)Pull Images
Pull specific image:
rfswift images pull -i penthertz/rfswift_noble:sdr_fullPull and rename locally:
rfswift images pull -i penthertz/rfswift_noble:sdr_full -t my_sdr:productionPull specific version:
rfswift images pull -i penthertz/rfswift_noble:sdr_full -t sdr_v0.6.5Pull multiple images:
# Pull all needed images
rfswift images pull -i penthertz/rfswift_noble:sdr_full
rfswift images pull -i penthertz/rfswift_noble:bluetooth
rfswift images pull -i penthertz/rfswift_noble:wifiReal-World Scenarios
Initial setup:
# Check what's available
rfswift images remote
# Pull main working image
rfswift images pull -i penthertz/rfswift_noble:sdr_full
# Verify it's available
rfswift images local
# Run it
rfswift run -i penthertz/rfswift_noble:sdr_full -n my_workspaceVersion management:
# Pull new version with specific tag
rfswift images pull -i penthertz/rfswift_noble:sdr_full -t sdr_v0.6.6
# Keep old version
rfswift images local | grep penthertz/rfswift
# Test new version
rfswift run -i sdr_v0.6.6 -n test_new_version
# If good, update production
rfswift upgrade -c production -i sdr_v0.6.6Multi-environment setup:
# Pull images for different purposes
rfswift images pull -i penthertz/rfswift_noble:sdr_full -t sdr_work
rfswift images pull -i penthertz/rfswift_noble:bluetooth -t bt_analysis
rfswift images pull -i penthertz/rfswift_noble:wifi -t wifi_testing
# Verify all available
rfswift images localTeam synchronization:
#!/bin/bash
# Pull standard team images
echo "Synchronizing team images..."
TEAM_IMAGES=(
"penthertz/rfswift_noble:sdr_full"
"penthertz/rfswift_noble:bluetooth"
"penthertz/rfswift_noble:wifi"
)
for image in "${TEAM_IMAGES[@]}"; do
echo "Pulling $image..."
rfswift images pull -i "$image"
done
echo "Team images synchronized:"
rfswift images localImage Management Workflows
Check Available Images
# See what's in the registry
rfswift images remote
# See what you have locally
rfswift images local
# Compare local vs remote
echo "=== LOCAL IMAGES ==="
rfswift images local
echo ""
echo "=== AVAILABLE REMOTE IMAGES ==="
rfswift images remoteUpdate to Latest Versions
#!/bin/bash
# update_images.sh
echo "Checking for image updates..."
# List current local images
rfswift images local
# Pull latest versions
echo "Pulling latest versions..."
rfswift images pull -i penthertz/rfswift_noble:sdr_full
rfswift images pull -i penthertz/rfswift_noble:bluetooth
rfswift images pull -i penthertz/rfswift_noble:wifi
echo "Update complete. Current images:"
rfswift images localCleanup Old Images
# View all images
rfswift images local
# Remove old/unused images
docker images | grep "penthertz/rfswift"
# Remove specific old version
docker rmi penthertz/rfswift_noble:old_version
# Or use RF Swift delete command
rfswift delete -i penthertz/rfswift_noble:old_version
# Verify cleanup
rfswift images localUnderstanding Image Tags
Official RF Swift Tags
RF Swift images use descriptive tags for different configurations:
| Tag | Purpose | Size | Use Case |
|---|---|---|---|
sdr_full |
Complete SDR stack | ~4GB | Professional SDR work |
sdr_light |
Lightweight SDR | ~1.5GB | Basic SDR tasks |
bluetooth |
Bluetooth tools | ~2GB | Bluetooth security |
wifi |
WiFi tools | ~2GB | WiFi security |
hardware |
Hardware security | ~2.5GB | Hardware hacking |
automotive |
Automotive security | ~2GB | Vehicle security |
telecom |
Telecom security | ~3GB | Mobile networks |
Common Patterns
First-Time Setup
# 1. See what's available
rfswift images remote
# 2. Pull what you need
rfswift images pull -i penthertz/rfswift_noble:sdr_full
# 3. Verify it's ready
rfswift images local
# 4. Start using it
rfswift run -i penthertz/rfswift_noble:sdr_full -n missionTroubleshooting
No Images Listed Locally
Problem: images local shows no RF Swift images
Solutions:
# Pull your first image
rfswift images pull -i penthertz/rfswift_noble:sdr_full
# Check all Docker images (not just RF Swift)
docker images
# Verify Docker is running
docker psRemote Registry Not Accessible
Problem: images remote fails or shows no images
Solutions:
# Check network connectivity
ping registry.hub.docker.com
# Check Docker Hub status
curl -I https://hub.docker.com
# Try direct docker search
docker search penthertz/rfswift_noble
# Check if behind proxy/firewallPull Fails
Error: Error pulling image
Solutions:
# Check image name spelling
rfswift images remote # Verify exact name
# Try with docker directly
docker pull penthertz/rfswift_noble:sdr_full
# Check disk space
df -h
# Check network
ping registry.hub.docker.comAuthentication Required
Problem: Private registry requires login
Solutions:
# Login to registry
docker login registry.example.com
# Then pull
rfswift images pull -i registry.example.com/image:tag
# For Docker Hub private images
docker login
rfswift images pull -i myuser/private-image:tagRelated Commands
build- Build custom imagesdownload- Download images to filesexport- Export images to archivesimport- Import images from archivesdelete- Remove imagesrun- Run containers from images
images remote to see what’s available before pulling. This helps you choose the right image variant for your needs and avoid pulling unnecessary large images.df -h before pulling multiple images. Use sdr_light for space-constrained systems.-t flag when pulling to create descriptive local tags like sdr_production or sdr_dev. This makes it easier to manage multiple versions and environments!