Skip to content

Files

Latest commit

 

History

History
23 lines (18 loc) · 386 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 386 Bytes

redis

Redis is an open source key-value store that functions as a data structure server.

docker-compose.yml

version: "3.8"
services:
  redis:
    image: redis:6-alpine
    command: --save 900 1
    ports:
      - "6379:6379"
    volumes:
      - ./data:/data
    restart: unless-stopped