From 3b0d74f21fc3bef49d92bfa6b74673e8769730b1 Mon Sep 17 00:00:00 2001 From: Ategon Date: Wed, 15 Jan 2025 16:35:21 -0500 Subject: [PATCH] Adjust ports --- docker-compose.yml | 2 +- src/components/posts/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5530b4b..bd7ca36 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,6 @@ services: build: context: . ports: - - "3004:3000" + - "127.0.0.1:3004:3000" environment: NODE_ENV: production diff --git a/src/components/posts/index.tsx b/src/components/posts/index.tsx index 5715dfb..adb380a 100644 --- a/src/components/posts/index.tsx +++ b/src/components/posts/index.tsx @@ -9,7 +9,7 @@ export default function Posts() { useEffect(() => { const fetchPosts = async () => { - const response = await fetch("http://localhost:3005/api/v1/posts"); + const response = await fetch("http://jam.edikoyo.com/api/v1/posts"); setPosts(await response.json()); };