Label stacks that should only run on ubuntu-dev: - bookclub, dockge, filebrowser, meshmon, meshtastic-web - mllogwatcher, network-mcp, obby, obsidian-tools - syncthing, szurubooru These will now be filtered by the updated workflow. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
959 B
YAML
46 lines
959 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: frontend/Dockerfile
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
labels:
|
|
- "com.ghost.tel/stack-type=dev-only"
|
|
environment:
|
|
FRONTEND_PORT: "5001"
|
|
ports:
|
|
- "5001:5001"
|
|
|
|
opnsense_collector:
|
|
build:
|
|
context: .
|
|
dockerfile: collectors/opnsense_collector/Dockerfile
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./static:/app/static
|
|
- ./inventory_targets.yml:/app/inventory_targets.yml:ro
|
|
environment:
|
|
COLLECTOR_INTERVAL_SECONDS: "60"
|
|
INVENTORY_FILE: "/app/inventory_targets.yml"
|
|
|
|
nmap_collector:
|
|
build:
|
|
context: .
|
|
dockerfile: collectors/nmap_collector/Dockerfile
|
|
restart: always
|
|
cap_add:
|
|
- NET_RAW
|
|
- NET_ADMIN
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
NMAP_INTERVAL_SECONDS: "300"
|
|
NMAP_PORT_RANGE: "1-1024"
|
|
NMAP_BATCH_SIZE: "10"
|