1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/redis/README.md
2022-01-07 18:20:29 +08:00

24 lines
386 B
Markdown

redis
=====
![](https://redis.io/images/redis-white.png)
[Redis][1] is an open source key-value store that functions as a data structure server.
## docker-compose.yml
```yaml
version: "3.8"
services:
redis:
image: redis:6-alpine
command: --save 900 1
ports:
- "6379:6379"
volumes:
- ./data:/data
restart: unless-stopped
```
[1]: https://redis.io/