mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
* stack config files_on_host * refresh stack cache not blocked when using files_on_host * add remote errors status * improve info tab * store the full path in ComposeContents
38 lines
851 B
YAML
38 lines
851 B
YAML
services:
|
|
monitor-periphery:
|
|
build:
|
|
context: .
|
|
dockerfile: bin/periphery/Dockerfile
|
|
logging:
|
|
driver: local
|
|
networks:
|
|
- monitor-network
|
|
ports:
|
|
- 8120:8120
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- monitor-repos:/etc/monitor/repos
|
|
# environment:
|
|
# # If the disk size is overreporting, can use one of these to
|
|
# # whitelist / blacklist the disks to filter them, whichever is easier.
|
|
# PERIPHERY_INCLUDE_DISK_MOUNTS: /etc/monitor/repos
|
|
# PERIPHERY_EXCLUDE_DISK_MOUNTS: /snap
|
|
|
|
monitor-mongo:
|
|
image: mongo
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: none
|
|
networks:
|
|
- monitor-network
|
|
ports:
|
|
- 27017:27017
|
|
volumes:
|
|
- db-data:/data/db
|
|
|
|
volumes:
|
|
db-data:
|
|
monitor-repos:
|
|
|
|
networks:
|
|
monitor-network: {} |