forked from minitap-ai/mobile-use
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (51 loc) · 1.58 KB
/
Copy pathdocker-compose.yml
File metadata and controls
54 lines (51 loc) · 1.58 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
54
services:
mobile-use-full-ip:
image: minitap/mobile-use:latest
container_name: mobile-use-full
user: "mobile-use:mobile-use"
restart: no
env_file:
- .env
environment:
ADB_CONNECT_ADDR: "${ADB_CONNECT_ADDR}"
RESULTS_OUTPUT_PATH: "/home/mobile-use/results.txt"
EVENTS_OUTPUT_PATH: "/home/mobile-use/events.json"
volumes:
- mobile-use-adb-keys:/home/mobile-use/.android
- ./llm-config.override.jsonc:/app/llm-config.override.jsonc
mobile-use-full-usb:
image: minitap/mobile-use:latest
container_name: mobile-use-full-usb
user: "mobile-use:mobile-use"
restart: no
env_file:
- .env
privileged: true
devices:
- "/dev/bus/usb:/dev/bus/usb"
environment:
RESULTS_OUTPUT_PATH: "/home/mobile-use/results.txt"
EVENTS_OUTPUT_PATH: "/home/mobile-use/events.json"
volumes:
- mobile-use-adb-keys:/home/mobile-use/.android
- ./llm-config.override.jsonc:/app/llm-config.override.jsonc
mobile-use-ip:
container_name: mobile-use
user: "mobile-use:mobile-use"
restart: no
build:
context: .
dockerfile: slim.Dockerfile
env_file:
- .env
environment:
ADB_CONNECT_ADDR: "${ADB_CONNECT_ADDR}"
RESULTS_OUTPUT_PATH: "/home/mobile-use/results.txt"
EVENTS_OUTPUT_PATH: "/home/mobile-use/events.json"
MOBILE_USE_HEALTH_RETRIES: "150"
MOBILE_USE_HEALTH_DELAY: "2"
volumes:
- mobile-use-adb-keys:/home/mobile-use/.android
- ./llm-config.override.jsonc:/app/llm-config.override.jsonc
volumes:
mobile-use-adb-keys: