-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (41 loc) · 886 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
49 lines (41 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: '3.8'
services:
allure-mcp:
build:
context: .
dockerfile: Dockerfile
container_name: allure-mcp-server
ports:
- "3000:3000"
environment:
PORT: 3000
LOG_LEVEL: ${LOG_LEVEL:-INFO}
CORS_ALLOWED_ORIGIN: ${CORS_ALLOWED_ORIGIN:-*}
AUDIT_LOG_PATH: /app/audit
AUDIT_RETENTION_DAYS: ${AUDIT_RETENTION_DAYS:-30}
env_file:
- .env
volumes:
- ./audit:/app/audit
restart: unless-stopped
# Resource limits
deploy:
resources:
limits:
cpus: '1'
memory: 256M
reservations:
cpus: '0.5'
memory: 128M
# Logging
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
labels: "service=allure-mcp"
networks:
- mcp-network
networks:
mcp-network:
driver: bridge