Files
CodeGenerator/docker-compose.yml

24 lines
545 B
YAML
Raw Permalink Normal View History

2025-09-14 10:30:26 +02:00
services:
codegenerator:
2025-09-14 10:50:25 +02:00
build:
context: .
dockerfile: Dockerfile
2025-09-14 10:30:26 +02:00
container_name: codegenerator
environment:
2025-09-14 10:50:25 +02:00
- OLLAMA_BASE_URL=http://host.docker.internal:11434
- DOCKER_HOST=unix:///var/run/docker.sock
2025-09-14 10:35:26 +02:00
volumes:
2025-09-14 10:50:25 +02:00
- /var/run/docker.sock:/var/run/docker.sock
- codegen-data:/app/data
- /tmp/docker-data:/tmp/docker-data
2025-09-14 10:30:26 +02:00
ports:
2025-09-14 10:50:25 +02:00
- "3000:3000"
extra_hosts:
- "host.docker.internal:host-gateway"
privileged: true
2025-09-14 10:30:26 +02:00
restart: unless-stopped
2025-09-14 10:50:25 +02:00
volumes:
codegen-data: