14 lines
229 B
YAML
14 lines
229 B
YAML
version: '3'
|
|
|
|
services:
|
|
nomad-mcp:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./configs:/app/configs
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- CONFIG_DIR=/app/configs
|
|
restart: unless-stopped |