mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
25 lines
498 B
YAML
25 lines
498 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
ai-code-review:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: registry.kuiper.com/ai-code-review:latest
|
|
container_name: ai-code-review
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000/"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 5s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512M
|