소스 검색

fix: :green_heart: Fix the ports exposed by Redis in the docker compose

- Replaced `expose` by `ports` key
adil 2 년 전
부모
커밋
8042e42cea
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docker-compose.yml

+ 2 - 2
docker-compose.yml

@@ -33,8 +33,8 @@ services:
 
   redis:
     image: redis
-    expose:
-      - 6379
+    ports:
+      - "6379:6379"
 
 volumes:
   node_modules: