17 lines
479 B
YAML
17 lines
479 B
YAML
|
|
services:
|
||
|
|
gateway:
|
||
|
|
build: .
|
||
|
|
ports:
|
||
|
|
- "8080:8080"
|
||
|
|
environment:
|
||
|
|
JWT_SECRET: "${JWT_SECRET}"
|
||
|
|
IDENTITY_URL: "http://identity-svc:8080"
|
||
|
|
CONTENT_URL: "http://content-svc:8080"
|
||
|
|
FILE_URL: "http://file-svc:8080"
|
||
|
|
STUDIO_URL: "http://studio-svc:8080"
|
||
|
|
RENDER_URL: "http://render-svc:8080"
|
||
|
|
RENDER_WS_URL: "ws://render-svc:8080"
|
||
|
|
NOTIFICATION_URL: "http://notification-svc:8080"
|
||
|
|
PORT: "8080"
|
||
|
|
restart: unless-stopped
|