mirror of
https://github.com/tiennm99/caro.git
synced 2026-06-04 12:13:07 +00:00
22 lines
483 B
YAML
22 lines
483 B
YAML
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
dockerfile: landlords-server/Dockerfile
|
|
container_name: caro-server
|
|
ports:
|
|
- "1024:1024" # TCP / Protobuf (CLI client)
|
|
- "1025:1025" # WebSocket + static HTTP (web client)
|
|
restart: unless-stopped
|
|
|
|
web-client:
|
|
build:
|
|
context: ./web-client
|
|
dockerfile: Dockerfile
|
|
container_name: caro-web-client
|
|
ports:
|
|
- "8080:80"
|
|
depends_on:
|
|
- server
|
|
restart: unless-stopped
|