{"id":17554172,"url":"https://github.com/phlegx/docker-sidekiq-web","last_synced_at":"2026-02-15T10:04:16.309Z","repository":{"id":140856603,"uuid":"476264971","full_name":"phlegx/docker-sidekiq-web","owner":"phlegx","description":"A Docker image to run a standalone instance of Sidekiq Web UI with Puma.","archived":false,"fork":false,"pushed_at":"2025-01-29T17:40:47.000Z","size":34,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T19:11:08.101Z","etag":null,"topics":["docker","docker-compose","docker-image","dockerfile","puma","rails","ruby","sidekiq","sidekiq-cron","sidekiq-monitor","sidekiq-web"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phlegx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-31T10:54:19.000Z","updated_at":"2025-01-29T17:37:57.000Z","dependencies_parsed_at":"2023-12-07T21:42:35.741Z","dependency_job_id":null,"html_url":"https://github.com/phlegx/docker-sidekiq-web","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlegx%2Fdocker-sidekiq-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlegx%2Fdocker-sidekiq-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlegx%2Fdocker-sidekiq-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlegx%2Fdocker-sidekiq-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phlegx","download_url":"https://codeload.github.com/phlegx/docker-sidekiq-web/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250330293,"owners_count":21412957,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","docker-image","dockerfile","puma","rails","ruby","sidekiq","sidekiq-cron","sidekiq-monitor","sidekiq-web"],"created_at":"2024-10-21T06:53:42.105Z","updated_at":"2026-02-15T10:04:16.291Z","avatar_url":"https://github.com/phlegx.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-sidekiq-web\n\nA Docker image to run a stand-alone instance of Sidekiq Web UI.\n\nDocker Hub Repo: https://hub.docker.com/r/phlegx/sidekiq-web/\n\n## Features\n\n* Use slim-buster, bullseye, buster ruby for the base image\n* Uses most recent versions of required gems\n* Uses Puma for Rack application\n* Uses connection pool for Redis connections\n* Redis configuration support\n* Redis Sentinel configuration support\n* Redis driver ruby and hiredis support\n* Sidekiq Cron support\n* HTTP Basic Auth support\n\n## Usage\n\n### Build image\n\n```\ndocker build \\\n  --build-arg RUBY_VERSION=3.4.7-slim \\\n  --build-arg SIDEKIQ_VERSION=8.0.8 \\\n  --build-arg SIDEKIQ_CRON_VERSION=2.3.1 \\\n  --build-arg PUMA_VERSION=7.0.4 \\\n  -t sidekiq-web .\n```\n\n### Run image\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_URI=host:6379 \\\n  sidekiq-web\n```\n\n### Sidekiq Cron\n\nTo run the container with Sidekiq Cron:\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_URI=host:6379 \\\n  -e SIDEKIQ_CRON=true \\\n  sidekiq-web\n```\n\n### Redis Config\n\nTo run the container with custom Redis configuration:\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_URI=host:6379 \\\n  -e REDIS_DB=1 \\\n  -e REDIS_POOL_SIZE=5 \\\n  -e REDIS_PASSWORD=password \\\n  -e REDIS_DRIVER=ruby \\\n  sidekiq-web\n```\n\nUsing Redis Sentinel configuration:\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_SENTINEL_URIS=uri1,uri2,uri3:26379 \\\n  -e REDIS_SENTINEL_PORT=26379 \\\n  -e REDIS_SENTINEL_NAME=mymaster \\\n  -e REDIS_SENTINEL_PASSWORD=password \\\n  -e REDIS_PASSWORD=password \\\n  -e REDIS_DB=1 \\\n  -e REDIS_POOL_SIZE=5 \\\n  -e REDIS_DRIVER=ruby \\\n  sidekiq-web\n```\n\nDefault `REDIS_DRIVER` is set to `hiredis`.\n\n### HTTP Basic Auth Credentials\n\nTo run the container with a custom username and password:\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_URI=host:6379 \\\n  -e SIDEKIQ_USERNAME=username \\\n  -e SIDEKIQ_PASSWORD=password \\\n  sidekiq-web\n```\n\n### Reverse Proxy\n\nTo run the container behind a proxy, make sure to set environment variable `SCRIPT_NAME` so that Sidekiq Web UI can properly construct URLs to the necessary CSS/JS assets:\n\n```\ndocker run \\\n  --network redis-host-net \\\n  -p 3001:9292 \\\n  -e REDIS_URI=host:6379 \\\n  -e SCRIPT_NAME=/sidekiq \\\n  sidekiq-web\n```\n\n### Docker Compose\n\nExample compose file:\n\n```\nversion: '3'\nservices:\n  sidekiq-web:\n    image: phlegx/sidekiq-web:r3.4-s8\n    environment:\n      REDIS_URI: host:6379\n      REDIS_PASSWORD: password\n      SIDEKIQ_USERNAME: username\n      SIDEKIQ_PASSWORD: password\n    ports:\n      - 3001:9292\n```\n\n## Other Implementations\n\n* [clok/standalone-sidekiq-web](https://github.com/clok/standalone-sidekiq-web)\n* [maddiefletcher/docker-sidekiqweb](https://github.com/maddiefletcher/docker-sidekiqweb)\n\n## Contributing\n\n1. Fork it ( https://github.com/[your-username]/docker-sidekiq-web/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## License\n\nThe MIT License\n\nCopyright (c) 2025 Phlegx Systems Technologies GmbH\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphlegx%2Fdocker-sidekiq-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphlegx%2Fdocker-sidekiq-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphlegx%2Fdocker-sidekiq-web/lists"}