1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/redis
2023-02-08 17:14:09 +08:00
..
arm upgrade redis 2018-07-22 19:44:42 +08:00
docker-compose.yml update mastodon 2023-02-08 17:14:09 +08:00
README.md update nextcloud 2022-01-07 18:20:29 +08:00

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