24 lines
394 B
YAML
24 lines
394 B
YAML
version: "3.8"
|
|
|
|
|
|
services:
|
|
gemini-cli-node:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: gemini-cli-node
|
|
volumes:
|
|
- .:/app
|
|
- gemini-config:/root/.config/gemini
|
|
working_dir: /app
|
|
stdin_open: true
|
|
tty: true
|
|
command: /bin/bash
|
|
environment:
|
|
- GEMINI_API_KEY=${GEMINI_API_KEY}
|
|
|
|
volumes:
|
|
gemini-config:
|
|
driver: local
|
|
|