Skip to content

Commit

Permalink
fix: update hardcoded IP in docker-compose.yml to use localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
4gray committed Nov 30, 2024
1 parent b3557ef commit 0c5ac29
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ services:
ports:
- "7333:3000"
environment:
- CLIENT_URL=http://localhost:4333 #this one should match with the address and port in frontend CLIENT_URL env
- CLIENT_URL=http://localhost:4333
# this one should match with the address and port in frontend CLIENT_URL env

frontend:
image: 4gray/iptvnator:latest
ports:
- "4333:80"
environment:
- BACKEND_URL=http://192.168.172.67:7333 # this one should match with the address of the backend service
- BACKEND_URL=http://localhost:7333
# this one should match with the address of the backend service

0 comments on commit 0c5ac29

Please sign in to comment.