-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 888 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 888 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
version: '3.8'
services:
reinvent-automation:
build:
context: .
dockerfile: Dockerfile
container_name: reinvent-automation
volumes:
# Mount outputs directory to persist results
- ./outputs:/app/outputs
# Mount config for easy customization
- ./config.yaml:/app/config.yaml:ro
environment:
# AWS credentials (if needed)
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID:-}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY:-}
- AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN:-}
# Logging
- LOG_LEVEL=${LOG_LEVEL:-INFO}
# Override command for different configurations
# command: ["--max-services", "5", "--skip-screenshots"]
# Resource limits (optional)
deploy:
resources:
limits:
cpus: '2'
memory: 2G
reservations:
cpus: '1'
memory: 1G