forked from Account-Link/github-zktls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (28 loc) · 874 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (28 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
services:
proof-browser:
build:
context: .
dockerfile: Dockerfile.neko
container_name: proof-browser
restart: unless-stopped
shm_size: 2gb
cap_add:
- SYS_ADMIN
ports:
- "8082:8080" # Neko WebRTC UI (view the browser)
- "3002:3000" # Proof bridge API (internal 3000 -> external 3002)
environment:
NEKO_DESKTOP_SCREEN: "1920x1080@30"
NEKO_WEBRTC_ICELITE: "true"
NEKO_WEBRTC_TCPMUX: "56000"
NEKO_NAT1TO1: "127.0.0.1"
NEKO_WEBRTC_ICESERVERS_FRONTEND: ""
NEKO_WEBRTC_ICESERVERS_BACKEND: ""
NEKO_MEMBER_PROVIDER: multiuser
NEKO_MEMBER_MULTIUSER_USER_PASSWORD: proof
NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD: proof_admin
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 10s
retries: 5
timeout: 5s