fix: Expose ports on all interfaces for internal network access
- Change port 3000 from 127.0.0.1 to 0.0.0.0 (frontend) - Change port 3001 from 127.0.0.1 to 0.0.0.0 (backend) - Allows access from 172.20.1.0/24 network
This commit is contained in:
+2
-2
@@ -60,7 +60,7 @@ services:
|
|||||||
- OVERSEER_API_KEY=${OVERSEER_API_KEY}
|
- OVERSEER_API_KEY=${OVERSEER_API_KEY}
|
||||||
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
|
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3001:3001" # Localhost only, Caddy proxies to this
|
- "3001:3001" # Exposed on all interfaces
|
||||||
depends_on:
|
depends_on:
|
||||||
postgres:
|
postgres:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
@@ -85,7 +85,7 @@ services:
|
|||||||
- NEXT_PUBLIC_SOLANA_NETWORK=devnet
|
- NEXT_PUBLIC_SOLANA_NETWORK=devnet
|
||||||
- NEXT_PUBLIC_SOLANA_RPC_URL=https://api.devnet.solana.com
|
- NEXT_PUBLIC_SOLANA_RPC_URL=https://api.devnet.solana.com
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3000:3000" # Localhost only, Caddy proxies to this
|
- "3000:3000" # Exposed on all interfaces
|
||||||
depends_on:
|
depends_on:
|
||||||
- backend
|
- backend
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
Reference in New Issue
Block a user