skip to Main Content

Dockerized version of Redis has a problem of configuration

I'm following the steps explained here: https://www.docker.com/blog/how-to-use-the-redis-docker-official-image/ https://hub.docker.com/_/redis/ I have a docker-compose.yml file like this: version: '3' services: backend: build: server/ image: cno/api environment: NODE_ENV: "production" ports: - "9114:9114" networks: - cnonetwork extra_hosts: - "host.docker.internal:host-gateway" depends_on: - redis redis: build:…

VIEW QUESTION
Back To Top
Search