-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (52 loc) · 1.79 KB
/
docker-compose.yml
File metadata and controls
53 lines (52 loc) · 1.79 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
image: pepperkit/backend:latest
environment:
OPENAI_API_KEY: ${OPENAI_API_KEY:-}
OPENAI_REALTIME_MODEL: ${OPENAI_REALTIME_MODEL:-gpt-realtime}
OPENAI_REALTIME_INSTRUCTIONS: ${OPENAI_REALTIME_INSTRUCTIONS:-You are a helpful Pepper robot assistant. Keep responses concise and clear.}
ports:
- "8081:8081"
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8081/health').read()"]
interval: 10s
timeout: 5s
retries: 6
android-studio-webrtc:
profiles: ["ide"]
platform: linux/amd64
build:
context: ./infra/android-studio-webrtc
dockerfile: Dockerfile
args:
ANDROID_STUDIO_VERSION: 2021.1.1.23
ANDROID_STUDIO_URL: https://redirector.gvt1.com/edgedl/android/studio/ide-zips/2021.1.1.23/android-studio-2021.1.1.23-linux.tar.gz
PEPPER_PLUGIN_VERSION: 1.5.3
PEPPER_PLUGIN_URL: https://plugins.jetbrains.com/plugin/download?pluginId=8354&version=1.5.3
image: pepperkit/android-studio-webrtc:2021.1.1.23
environment:
TZ: UTC
DISPLAY_SIZEW: 1920
DISPLAY_SIZEH: 1080
DISPLAY_REFRESH: 60
DISPLAY_DPI: 96
DISPLAY_CDEPTH: 24
SELKIES_ENCODER: x264enc
SELKIES_ENABLE_BASIC_AUTH: "true"
SELKIES_BASIC_AUTH_USER: ubuntu
SELKIES_BASIC_AUTH_PASSWORD: ${SELKIES_PASSWORD:-pepperkit}
PASSWD: ${SELKIES_PASSWORD:-pepperkit}
SELKIES_TURN_PROTOCOL: udp
SELKIES_TURN_PORT: 3478
TURN_MIN_PORT: 65532
TURN_MAX_PORT: 65535
ports:
- "8080:8080"
- "3478:3478"
- "3478:3478/udp"
- "65532-65535:65532-65535"
- "65532-65535:65532-65535/udp"
shm_size: "2gb"