rails-devops
Specializes in deploying and managing Rails applications with Docker, CI/CD, and cloud services for optimal performance.
Install this skill
Security score
The rails-devops skill was audited on Feb 21, 2026 and we found 20 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 89 | ```yaml |
Template literal with variable interpolation in command context
| 163 | ```yaml |
Curl to non-GitHub URL
| 82 | CMD curl -f http://localhost:3000/health || exit 1 |
Fetch to external URL
| 347 | max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5) |
Fetch to external URL
| 348 | min_threads_count = ENV.fetch("RAILS_MIN_THREADS", max_threads_count) |
Fetch to external URL
| 351 | worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development" |
Fetch to external URL
| 353 | port ENV.fetch("PORT", 3000) |
Fetch to external URL
| 354 | environment ENV.fetch("RAILS_ENV", "development") |
Fetch to external URL
| 356 | pidfile ENV.fetch("PIDFILE", "tmp/pids/server.pid") |
Fetch to external URL
| 358 | workers ENV.fetch("WEB_CONCURRENCY", 2) |
Fetch to external URL
| 380 | pool: <%= ENV.fetch("RAILS_MAX_THREADS", 5) %> |
Fetch to external URL
| 584 | workers Integer(ENV.fetch("WEB_CONCURRENCY", 2)) |
Fetch to external URL
| 585 | threads_count = Integer(ENV.fetch("RAILS_MAX_THREADS", 5)) |
Fetch to external URL
| 606 | pool_size: ENV.fetch("RAILS_MAX_THREADS", 5), |
Access to .env file
| 110 | - .env.production |
Access to .env file
| 151 | - .env.production |
Access to .env file
| 312 | # .env.production |
External URL reference
| 82 | CMD curl -f http://localhost:3000/health || exit 1 |
External URL reference
| 330 | ASSET_HOST=https://cdn.example.com |
External URL reference
| 339 | SENTRY_DSN=https://your-sentry-dsn |