19 lines
463 B
YAML
19 lines
463 B
YAML
port: 8091
|
|
services:
|
|
# Default adapter service
|
|
default:
|
|
config: service1.yaml
|
|
command: ["./bin/adapter"]
|
|
|
|
# Example of a service with command-line arguments
|
|
advanced:
|
|
config: service2.yaml
|
|
command:
|
|
- ./bin/adapter
|
|
- --verbose
|
|
- --timeout=30s
|
|
|
|
# Example of a service with an absolute path
|
|
external:
|
|
config: service3.yaml
|
|
command: ["/usr/local/bin/external-adapter", "--config", "adapter-config.json"] |