2025-08-15 18:43:42 +05:30
|
|
|
services:
|
|
|
|
|
komodo_periphery:
|
|
|
|
|
container_name: komodo_periphery
|
2025-09-23 13:57:23 +00:00
|
|
|
image: ghcr.io/moghtech/komodo-periphery:1.19.4
|
2025-08-15 18:43:42 +05:30
|
|
|
restart: unless-stopped
|
2025-08-15 22:16:35 +05:30
|
|
|
hostname: ${HOSTNAME}
|
2025-08-15 18:43:42 +05:30
|
|
|
labels:
|
|
|
|
|
komodo.skip:
|
2025-08-15 20:04:46 +05:30
|
|
|
command: periphery --config-path ${PERIPHERY_ROOT_DIRECTORY}/periphery.config.toml
|
2025-08-15 18:43:42 +05:30
|
|
|
volumes:
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
|
- /proc:/proc
|
2025-08-15 20:04:46 +05:30
|
|
|
- ${PERIPHERY_ROOT_DIRECTORY}:${PERIPHERY_ROOT_DIRECTORY}
|
2025-08-15 18:43:42 +05:30
|
|
|
ports:
|
2025-08-15 20:04:46 +05:30
|
|
|
- ${PORT}:8120
|
2025-08-15 18:52:47 +05:30
|
|
|
networks:
|
|
|
|
|
- backend
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
|
backend:
|
|
|
|
|
external: true
|