19 lines
785 B
YAML
19 lines
785 B
YAML
services:
|
|
periphery:
|
|
image: ghcr.io/moghtech/komodo-periphery:latest # Or a specific version
|
|
container_name: komodo-periphery
|
|
ports:
|
|
- "8120:8120" # Expose Periphery API port
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock # Required to interact with Docker daemon
|
|
- komodo-periphery-data:/app/data # Persistent storage for periphery data
|
|
environment:
|
|
# Optional: Set a specific log level (e.g., info, debug, error)
|
|
- LOG_LEVEL=info
|
|
- KOMODO_CORE_ADDRESS=192.168.2.7 # Replace with your Komodo Core IP
|
|
- KOMODO_CORE_PASSKEY=HModV9yPmOBD4P # Replace with your Komodo Core passkey
|
|
- PERIPHERY_SSL_ENABLED=true
|
|
- PERIPHERY_DISABLE_TERMINALS=false
|
|
restart: unless-stopped
|
|
volumes:
|
|
komodo-periphery-data: |