-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
95 lines (89 loc) · 2.41 KB
/
docker-compose.yml
File metadata and controls
95 lines (89 loc) · 2.41 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: '3.8'
services:
# Main zodkit service for CLI operations
zodkit:
build:
context: .
dockerfile: Dockerfile
target: production
image: zodkit:latest
container_name: zodkit-cli
volumes:
# Mount current directory as workspace
- .:/workspace:ro
# Mount output directory for reports
- ./reports:/workspace/reports
working_dir: /workspace
environment:
- NODE_ENV=production
- ZODDED_LOG_LEVEL=info
# Override entrypoint for interactive use
entrypoint: ["dumb-init", "--", "node", "/app/dist/cli/index.js"]
command: ["--help"]
profiles: ["cli"]
# Development service with watch mode
zodkit-dev:
build:
context: .
dockerfile: Dockerfile
target: production
image: zodkit:latest
container_name: zodkit-dev
volumes:
- .:/workspace
working_dir: /workspace
environment:
- NODE_ENV=development
- ZODDED_LOG_LEVEL=debug
entrypoint: ["dumb-init", "--", "node", "/app/dist/cli/index.js"]
command: ["check", "--watch", "--verbose"]
profiles: ["dev"]
# CI/CD service for automated checks
zodkit-ci:
build:
context: .
dockerfile: Dockerfile
target: production
image: zodkit:latest
container_name: zodkit-ci
volumes:
- .:/workspace:ro
- ./ci-reports:/workspace/ci-reports
working_dir: /workspace
environment:
- NODE_ENV=production
- ZODDED_LOG_LEVEL=warn
- CI=true
entrypoint: ["dumb-init", "--", "node", "/app/dist/cli/index.js"]
command: ["check", "--ci", "--format", "json", "--output", "ci-reports/zodkit-results.json"]
profiles: ["ci"]
# Performance testing service
zodkit-benchmark:
build:
context: .
dockerfile: Dockerfile
target: production
image: zodkit:latest
container_name: zodkit-benchmark
volumes:
- .:/workspace:ro
- ./benchmark-results:/workspace/benchmark-results
working_dir: /workspace
environment:
- NODE_ENV=production
- ZODDED_LOG_LEVEL=info
entrypoint: ["dumb-init", "--", "node", "/app/dist/cli/index.js"]
command: ["benchmark", "--save", "--output", "benchmark-results"]
profiles: ["benchmark"]
# Networks
networks:
default:
name: zodkit-network
# Volumes for persistent data
volumes:
zodkit-cache:
driver: local
driver_opts:
type: none
o: bind
device: ${PWD}/.zodkit-cache