Files
komodo/test.compose.yaml
Maxwell Becker 43593162b0 1.13.2 local compose (#36)
* 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
2024-08-18 00:04:47 -07:00

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: {}