Update port mappings to match nginx config
Build and Push Docker Image / build (push) Successful in 1m55s
Details
Build and Push Docker Image / build (push) Successful in 1m55s
Details
- Portal: 7453 - Studio: 7454 - Kong API: 7455 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
35f9beabc6
commit
c92a7ee9b8
|
|
@ -11,9 +11,9 @@
|
||||||
# 5. Configure your nginx to proxy to the exposed ports
|
# 5. Configure your nginx to proxy to the exposed ports
|
||||||
#
|
#
|
||||||
# Exposed Ports (configure nginx to proxy to these):
|
# Exposed Ports (configure nginx to proxy to these):
|
||||||
# - Portal: localhost:3000
|
# - Portal: localhost:7453
|
||||||
# - Kong API: localhost:8000
|
# - Kong API: localhost:7455
|
||||||
# - Studio: localhost:3001 (optional)
|
# - Studio: localhost:7454 (optional)
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|
@ -59,7 +59,7 @@ services:
|
||||||
container_name: monacousa-studio
|
container_name: monacousa-studio
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3001:3000"
|
- "127.0.0.1:7454:3000"
|
||||||
environment:
|
environment:
|
||||||
STUDIO_PG_META_URL: http://meta:8080
|
STUDIO_PG_META_URL: http://meta:8080
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
|
|
@ -88,7 +88,7 @@ services:
|
||||||
container_name: monacousa-kong
|
container_name: monacousa-kong
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8000:8000"
|
- "127.0.0.1:7455:8000"
|
||||||
environment:
|
environment:
|
||||||
KONG_DATABASE: "off"
|
KONG_DATABASE: "off"
|
||||||
KONG_DECLARATIVE_CONFIG: /var/lib/kong/kong.yml
|
KONG_DECLARATIVE_CONFIG: /var/lib/kong/kong.yml
|
||||||
|
|
@ -339,7 +339,7 @@ services:
|
||||||
container_name: monacousa-portal
|
container_name: monacousa-portal
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3000:3000"
|
- "127.0.0.1:7453:3000"
|
||||||
environment:
|
environment:
|
||||||
PUBLIC_SUPABASE_URL: https://api.${DOMAIN}
|
PUBLIC_SUPABASE_URL: https://api.${DOMAIN}
|
||||||
PUBLIC_SUPABASE_ANON_KEY: ${ANON_KEY}
|
PUBLIC_SUPABASE_ANON_KEY: ${ANON_KEY}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue