Loading...
Loading...
Manage LocalStack container lifecycle. Use when users need to start, stop, restart, or check status of LocalStack, configure LocalStack environment variables, or troubleshoot LocalStack container issues.
npx skill4agent add localstack/skills localstack# Basic start
localstack start -d
# Start with debug mode
DEBUG=1 localstack start -d
# Start with Pro features (requires auth token)
LOCALSTACK_AUTH_TOKEN=<token> localstack start -d# Check if LocalStack is running
localstack status
# Check service health
curl http://localhost:4566/_localstack/health
# View running Docker container
docker ps | grep localstack# Graceful stop
localstack stop
# Force stop via Docker
docker stop localstack-main# Follow logs
localstack logs -f
# View last 100 lines
localstack logs --tail 100| Variable | Description | Default |
|---|---|---|
| Enable debug logging | |
| Enable persistence across restarts | |
| Auth token for Pro features | None |
| Port configuration | |
LOCALSTACK_AUTH_TOKEN