---
title: "Setup Redis with docker-compose"
date: 2021-01-05T15:24:17.000Z
author: Z.SHINCHVEN
tags: [Docker, docker-compose, redis]
canonical: https://atlassc.net/2021/01/06/redis-with-docker-compose
---
```yml
version: '3.5'

services:
  redis:
    container_name: redis
    image: redis
    command: redis-server --appendonly yes --requirepass $REDIS_PASSWORD
    ports:
      - "6379:6379"
    volumes:
      - ./data:/data
    restart: always
```
