{"id":20807583,"url":"https://github.com/redisson/redisson-docker","last_synced_at":"2025-12-24T10:43:25.196Z","repository":{"id":76827688,"uuid":"68598598","full_name":"redisson/redisson-docker","owner":"redisson","description":"Dockerfile for Redisson Node","archived":false,"fork":false,"pushed_at":"2021-06-02T12:56:50.000Z","size":44,"stargazers_count":11,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-18T13:42:43.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redisson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2016-09-19T11:17:15.000Z","updated_at":"2024-11-15T06:39:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"62eea3b8-db1e-42be-9603-8f1ad22396e7","html_url":"https://github.com/redisson/redisson-docker","commit_stats":null,"previous_names":[],"tags_count":104,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redisson%2Fredisson-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redisson%2Fredisson-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redisson%2Fredisson-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redisson%2Fredisson-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redisson","download_url":"https://codeload.github.com/redisson/redisson-docker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243152870,"owners_count":20244657,"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":[],"created_at":"2024-11-17T19:38:56.125Z","updated_at":"2025-12-24T10:43:25.163Z","avatar_url":"https://github.com/redisson.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# redisson-docker\nDocker container for Redisson Node\n\n# Supported tags and respective `Dockerfile` links\n-\t[`3.15.5`, `latest`, `master`](https://github.com/redisson/redisson-docker/blob/master/Dockerfile)\n-\t[`3.15.5-ubuntu`, `latest-ubuntu`, `master-ubuntu`](https://github.com/redisson/redisson-docker/blob/master-ubuntu/Dockerfile)\n\n# What is Redisson?\n\nRedisson is Redis Java client and In-Memory Data Grid. It provides [Distributed objects](https://github.com/redisson/redisson/wiki/6.-Distributed-objects), [Distributed collections](https://github.com/redisson/redisson/wiki/7.-Distributed-collections), [Distributed locks and synchronizers](https://github.com/redisson/redisson/wiki/8.-Distributed-locks-and-synchronizers), [Distributed services](https://github.com/redisson/redisson/wiki/9.-distributed-services), [Spring Framework](https://github.com/redisson/redisson/wiki/14.-Integration%20with%20frameworks#141-spring-framework) integration, [Spring Cache](https://github.com/redisson/redisson/wiki/14.-Integration%20with%20frameworks/#142-spring-cache) implementation, [Spring Transaction API](https://github.com/redisson/redisson/wiki/14.-Integration-with-frameworks/#147-spring-transaction-manager) implementation, [Spring Data Redis](https://github.com/redisson/redisson/wiki/14.-Integration-with-frameworks/#148-spring-data-redis) integration, [Spring Boot Starter](https://github.com/redisson/redisson/wiki/14.-Integration-with-frameworks/#149-spring-boot-starter) implementation, [Transaction API](https://github.com/redisson/redisson/wiki/10.-Additional-features#104-transactions), [Tomcat Session Manager](https://github.com/redisson/redisson/wiki/14.-Integration%20with%20frameworks#145-tomcat-redis-session-manager) implementation, [Spring Session](https://github.com/redisson/redisson/wiki/14.-Integration%20with%20frameworks/#146-spring-session) implementation\n\n# Image Variants\n\nRedisson Node container has two variants:\n\n## `redisson-node:\u003cversion\u003e`\n\nDefault image. Based on OpenJDK 1.8 image\n\n## `redisson-node:\u003cversion\u003e-ubuntu`\n\nBased on Ubuntu 18.04 image with OpenJDK package.\n\n# 1. How to run OpenJDK based container\n\n## 1. Run with Redis\n\n### Run Redis\n    docker run -d --name redis-node redis\n\n### Run Redisson Node\n    docker run -d --network container:redis-node -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5\nwith `JAVA_OPTS` parameters\n\n    docker run -d --network container:redis-node -e JAVA_OPTS=\"-Xmx1g\" -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5\n\n`\u003cpath-to-config\u003e` - path to Redisson Node [config](https://github.com/redisson/redisson/wiki/12.-Standalone-node#122-configuration)\n\n## 2. Run with external Redis\n\n### Run Redisson Node\n    docker run -d -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5\nwith `JAVA_OPTS` parameters\n\n    docker run -d -e JAVA_OPTS=\"-Xmx1g\" -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5\n\n`\u003cpath-to-config\u003e` - path to Redisson Node [config](https://github.com/redisson/redisson/wiki/12.-Standalone-node#122-configuration)\n\n\n# 2. How to run Ubuntu based container\n\n## 1. Run with Redis\n\n### Run Redis\n    docker run -d --name redis-node redis\n\n### Run Redisson Node\n    docker run -d --network container:redis-node -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5-ubuntu\nwith `JAVA_OPTS` parameters\n\n    docker run -d --network container:redis-node -e JAVA_OPTS=\"-Xmx1g\" -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5-ubuntu\n\n`\u003cpath-to-config\u003e` - path to Redisson Node [config](https://github.com/redisson/redisson/wiki/12.-Standalone-node#122-configuration)\n\n## 2. Run with external Redis\n\n### Run Redisson Node\n    docker run -d -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5-ubuntu\nwith `JAVA_OPTS` parameters\n\n    docker run -d -e JAVA_OPTS=\"-Xmx1g\" -v \u003cpath-to-config\u003e:/opt/redisson-node/redisson.conf redisson/redisson-node:3.15.5-ubuntu\n\n`\u003cpath-to-config\u003e` - path to Redisson Node [config](https://github.com/redisson/redisson/wiki/12.-Standalone-node#122-configuration)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredisson%2Fredisson-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredisson%2Fredisson-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredisson%2Fredisson-docker/lists"}