Skip to content

Instantly share code, notes, and snippets.

@orange723
Last active July 26, 2025 03:43
Show Gist options
  • Save orange723/18a24dd4a7354a789e6e0fbe9617013d to your computer and use it in GitHub Desktop.
Save orange723/18a24dd4a7354a789e6e0fbe9617013d to your computer and use it in GitHub Desktop.
redis
services:
redis:
container_name: redis
image: redis:4.0
ports:
- 6379:6379
restart: always
volumes:
- ./data:/data
- ./redis.conf:/usr/local/etc/redis/redis.conf
- /etc/localtime:/etc/localtime
command: redis-server /usr/local/etc/redis/redis.conf
requirepass 12345678
maxmemory 536870912
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment