Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active November 28, 2024 06:57
Show Gist options
  • Select an option

  • Save wilmoore/f73cd3a35a2cc591edc63399d44b016e to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/f73cd3a35a2cc591edc63399d44b016e to your computer and use it in GitHub Desktop.
Software Engineering :: Database :: Redis :: Distribution :: Redis Stack :: Install :: Container

Software Engineering :: Database :: Redis :: Distribution :: Redis Stack :: Install :: Container

⪼ Made with 💜 by Polyglot.

content
related

Installing Redis Stack via Container

Docker

❯ docker pull redis/redis-stack-server:latest
❯ docker stop redis-stack-server
❯ docker rm redis-stack-server
❯ docker run --name redis-stack-server -d -p 6379:6379 redis/redis-stack-server:latest

Podman

podman run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest
podman exec -it redis-stack-server redis-cli
127.0.0.1:6379> 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment