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()); };