21 lines
515 B
YAML
21 lines
515 B
YAML
services:
|
|
komodo_periphery:
|
|
container_name: komodo_periphery
|
|
image: ghcr.io/moghtech/komodo-periphery:1.18.4
|
|
restart: unless-stopped
|
|
labels:
|
|
komodo.skip:
|
|
command: periphery --config-path ${PERIPHERY_ROOT_DIRECTORY}/periphery.config.toml
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /proc:/proc
|
|
- ${PERIPHERY_ROOT_DIRECTORY}:${PERIPHERY_ROOT_DIRECTORY}
|
|
ports:
|
|
- ${PORT}:8120
|
|
networks:
|
|
- backend
|
|
|
|
networks:
|
|
backend:
|
|
external: true
|