15 lines
296 B
YAML
15 lines
296 B
YAML
services:
|
|
telegram-codex-bot:
|
|
build:
|
|
context: .
|
|
image: telegram-codex-bot:local
|
|
container_name: telegram-codex-bot
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./workspaces:/workspaces
|
|
- ./codex-home:/root/.codex
|
|
|