-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-isolation.conf.example
More file actions
52 lines (43 loc) · 1.98 KB
/
Copy pathclaude-isolation.conf.example
File metadata and controls
52 lines (43 loc) · 1.98 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
# YOLO Claude Android Docker - Isolation Configuration
# Place this file as 'claude-isolation.conf' in your Android project root.
# Run: yolo-claude-android
#
# Documentation: https://github.com/romychab/yolo-claude-android
# (Required) Absolute path to the Android SDK on the host machine.
# Tip: copy the value of sdk.dir from local.properties.
android_sdk_path = "/opt/android-sdk"
# (Optional) JDK version used inside the container. Supported: 17 or 21.
# Default: 21. Any other value is rejected with an error.
jdk_version = 21
# (Optional) Mount the host local Maven repository (~/.m2) read-only.
# Default: false
include_local_maven = false
# (Optional) Permission mode the in-container `yolo` shortcut uses.
# "bypass" (default) = `claude --dangerously-skip-permissions` (full YOLO).
# If your account/org disallows bypass (e.g. Teams/Enterprise), pick a mode
# passed to `claude --permission-mode`: acceptEdits (good fallback), auto,
# plan, default, dontAsk.
permission_mode = "bypass"
# (Optional) Additional host paths to bind-mount into the container.
# Each entry requires 'path' (absolute) and 'readonly' (true/false).
#
# [[extra_mounts]]
# path = "/home/user/keystores"
# readonly = true
# (Optional) Restrict the container's outbound network access to a whitelist.
# Disabled by default. When enabled, a built-in set of Android/Claude hosts is
# always allowed; hosts in 'allow' are added on top.
# [network]
# restrict = false
# allow = ["internal.maven.example.com"]
# (Optional) Allow the container to launch the HOST Android emulator via a
# validated broker. Disabled by default (it permits host execution).
# [emulator]
# allow_host_control = false
# (Optional) Enable MCP servers inside the container. Disabled by default.
# When enabled, your global mcpServers plus this project's are copied in
# (other projects' are scrubbed). 'env' lists host env var NAMES to forward
# (by name only, kept out of docker args). See the README for the risks.
# [mcp]
# enabled = false
# env = ["GITHUB_TOKEN"]