FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codex/.devcontainer/devcontainer.secure.json at main · codengine/codex · GitHub
codengine
/
codex
Public
forked from
openai/codex
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codex
/
.devcontainer
/
devcontainer.secure.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
86 lines (86 loc) · 3.09 KB
Breadcrumbs
codex
/
.devcontainer
/
devcontainer.secure.json
Copy path
File metadata and controls
86 lines (86 loc) · 3.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema"
:
"
https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json
"
,
"name"
:
"
Codex (Secure)
"
,
"build"
: {
"dockerfile"
:
"
Dockerfile.secure
"
,
"context"
:
"
..
"
,
"args"
: {
"TZ"
:
"
${localEnv:TZ:UTC}
"
,
"NODE_MAJOR"
:
"
22
"
,
"RUST_TOOLCHAIN"
:
"
1.95.0
"
,
"CODEX_NPM_VERSION"
:
"
0.121.0
"
}
},
"runArgs"
: [
"
--cap-add=SYS_ADMIN
"
,
"
--cap-add=SYS_CHROOT
"
,
"
--cap-add=SETUID
"
,
"
--cap-add=SETGID
"
,
"
--cap-add=SYS_PTRACE
"
,
"
--security-opt=seccomp=unconfined
"
,
"
--security-opt=apparmor=unconfined
"
,
"
--cap-add=NET_ADMIN
"
,
"
--cap-add=NET_RAW
"
],
"init"
:
true
,
"features"
: {
"ghcr.io/facebook/devcontainers/features/dotslash:latest"
: {}
},
"updateRemoteUserUID"
:
true
,
"remoteUser"
:
"
vscode
"
,
"workspaceMount"
:
"
source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=delegated
"
,
"workspaceFolder"
:
"
/workspace
"
,
"mounts"
: [
"
source=codex-commandhistory-${devcontainerId},target=/commandhistory,type=volume
"
,
"
source=codex-home-${devcontainerId},target=/home/vscode/.codex,type=volume
"
,
"
source=codex-gh-${devcontainerId},target=/home/vscode/.config/gh,type=volume
"
,
"
source=codex-cargo-registry-${devcontainerId},target=/home/vscode/.cargo/registry,type=volume
"
,
"
source=codex-cargo-git-${devcontainerId},target=/home/vscode/.cargo/git,type=volume
"
,
"
source=codex-rustup-${devcontainerId},target=/home/vscode/.rustup,type=volume
"
,
"
source=${localEnv:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,readonly
"
],
"containerEnv"
: {
"RUST_BACKTRACE"
:
"
1
"
,
"CODEX_UNSAFE_ALLOW_NO_SANDBOX"
:
"
1
"
,
"CODEX_ENABLE_FIREWALL"
:
"
1
"
,
"CODEX_INCLUDE_GITHUB_META_RANGES"
:
"
1
"
,
"OPENAI_ALLOWED_DOMAINS"
:
"
api.openai.com auth.openai.com github.com api.github.com codeload.github.com raw.githubusercontent.com objects.githubusercontent.com crates.io index.crates.io static.crates.io static.rust-lang.org registry.npmjs.org pypi.org files.pythonhosted.org
"
,
"CARGO_TARGET_DIR"
:
"
/workspace/.cache/cargo-target
"
,
"GIT_CONFIG_GLOBAL"
:
"
/home/vscode/.gitconfig.local
"
,
"COREPACK_ENABLE_DOWNLOAD_PROMPT"
:
"
0
"
,
"PYTHONDONTWRITEBYTECODE"
:
"
1
"
,
"PIP_DISABLE_PIP_VERSION_CHECK"
:
"
1
"
},
"remoteEnv"
: {
"OPENAI_API_KEY"
:
"
${localEnv:OPENAI_API_KEY}
"
},
"postCreateCommand"
:
"
python3 /opt/post_install.py
"
,
"postStartCommand"
:
"
bash /opt/post_start.sh
"
,
"waitFor"
:
"
postStartCommand
"
,
"customizations"
: {
"vscode"
: {
"settings"
: {
"terminal.integrated.defaultProfile.linux"
:
"
zsh
"
,
"terminal.integrated.profiles.linux"
: {
"bash"
: {
"path"
:
"
bash
"
,
"icon"
:
"
terminal-bash
"
},
"zsh"
: {
"path"
:
"
zsh
"
}
},
"files.trimTrailingWhitespace"
:
true
,
"files.insertFinalNewline"
:
true
,
"files.trimFinalNewlines"
:
true
},
"extensions"
: [
"
openai.chatgpt
"
,
"
rust-lang.rust-analyzer
"
,
"
tamasfe.even-better-toml
"
,
"
vadimcn.vscode-lldb
"
,
"
ms-azuretools.vscode-docker
"
]
}
}
}
Back
|
FazBrowse Home
|
New Git URL