Skip to content

Instantly share code, notes, and snippets.

@gterdem
Last active March 9, 2022 13:49
Show Gist options
  • Save gterdem/a5ce24aff806f2b60dd7aeedb8d5777d to your computer and use it in GitHub Desktop.
Save gterdem/a5ce24aff806f2b60dd7aeedb8d5777d to your computer and use it in GitHub Desktop.
Containerized Redis
version: '3.7'
services:
redis:
container_name: redis
image: redis:alpine
ports:
- "6379:6379"
docker run -d -p 6379:6379 --name redis redis:alpine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment