-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
35 lines (31 loc) · 784 Bytes
/
docker-compose.yaml
File metadata and controls
35 lines (31 loc) · 784 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
# IGLA Production Docker Compose
# ⲤⲀⲔⲢⲀ ⲪⲞⲢⲘⲨⲖⲀ: V = n × 3^k × π^m × φ^p × e^q
# PHOENIX = 999 = 3³ × 37
version: '3.8'
services:
igla:
build:
context: ..
dockerfile: deploy/Dockerfile.igla
image: igla:3.0.0
container_name: igla-runtime
volumes:
- ../specs:/igla/specs:ro
- igla-output:/igla/output
environment:
- IGLA_VERSION=3.0.0
- IGLA_PHOENIX=999
restart: unless-stopped
igla-benchmark:
build:
context: ..
dockerfile: deploy/Dockerfile.igla
image: igla:3.0.0
container_name: igla-benchmark
command: ["python3", "/igla/python/igla.py"]
volumes:
- ../benchmarks:/igla/benchmarks:ro
profiles:
- benchmark
volumes:
igla-output: