Switch compose services from ports to expose
This commit is contained in:
@@ -10,8 +10,8 @@ services:
|
|||||||
- frontend_node_modules:/app/Frontend/node_modules
|
- frontend_node_modules:/app/Frontend/node_modules
|
||||||
- frontend_nuxt:/app/Frontend/.nuxt
|
- frontend_nuxt:/app/Frontend/.nuxt
|
||||||
- frontend_output:/app/Frontend/.output
|
- frontend_output:/app/Frontend/.output
|
||||||
ports:
|
expose:
|
||||||
- "3000:3000"
|
- "3000"
|
||||||
environment:
|
environment:
|
||||||
DATABASE_URL: "postgresql://postgres:postgres@postgres:5432/clientsflow?schema=public"
|
DATABASE_URL: "postgresql://postgres:postgres@postgres:5432/clientsflow?schema=public"
|
||||||
REDIS_URL: "redis://redis:6379"
|
REDIS_URL: "redis://redis:6379"
|
||||||
@@ -62,15 +62,15 @@ services:
|
|||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
ports:
|
expose:
|
||||||
- "6379:6379"
|
- "6379"
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
- redis_data:/data
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
ports:
|
expose:
|
||||||
- "5432:5432"
|
- "5432"
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: "clientsflow"
|
POSTGRES_DB: "clientsflow"
|
||||||
POSTGRES_USER: "postgres"
|
POSTGRES_USER: "postgres"
|
||||||
@@ -132,8 +132,8 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
langfuse-clickhouse:
|
langfuse-clickhouse:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
ports:
|
expose:
|
||||||
- "3001:3000"
|
- "3000"
|
||||||
environment:
|
environment:
|
||||||
<<: *langfuse_env
|
<<: *langfuse_env
|
||||||
NEXTAUTH_SECRET: "clientsflow-local-nextauth-secret"
|
NEXTAUTH_SECRET: "clientsflow-local-nextauth-secret"
|
||||||
|
|||||||
Reference in New Issue
Block a user