skip to Main Content

I can’t start redis container in my docker-compose file. I know that docker-compose file is OK, because my colleagues can start the project successfully. I read that there is a solution to delete dump.rdb file. But I can’t find it. I use Windows machine. Any suggestions will be very helpful.

Error
2023-02-09 16:41:28 1:M 09 Feb 2023 13:41:28.699 # Can’t handle RDB format version 10

Redis in docker_compose:

redis:

container_name: redis
hostname: redis
image: redis:5.0
ports:
  - "6379:6379"
volumes:
  - redis:/data
restart: always

2

Answers


  1. Chosen as BEST ANSWER

    The solution was very simple:

    docker volume ls
    docker volume rm <volume_name>
    

  2. On Mac M2 running the docker compose, the solution was removing .datastore directory in the root of project

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search