Files
codex/docker-compose.yaml
Tord-Vincent Heggland 792b19621d isfinnishformaster
2026-04-14 18:48:32 +02:00

27 lines
506 B
YAML

services:
codex:
build:
context: .
args:
UID: ${UID}
GID: ${GID}
container_name: codex
stdin_open: true
tty: true
user: "${UID}:${GID}"
volumes:
- ./workspace:/home/dev/workspace
- codex_config:/home/dev/.config
- codex_home:/home/dev/.codex
tmpfs:
- /tmp
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
network_mode: bridge
command: sleep infinity
volumes:
codex_config:
codex_home: