initial commit

This commit is contained in:
2026-04-03 15:31:02 +00:00
commit 95bf5579ef
10 changed files with 14131 additions and 0 deletions
@@ -0,0 +1,41 @@
services:
telegraf:
image: telegraf
container_name: telegraf
restart: unless-stopped
privileged: true
user: telegraf:985 # make telegraf run with docker group (985) to access docker socket
hostname: ${HOSTNAME} # picks up the hostname of komodo-periphery
volumes:
- ${DROOT}/telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:ro
# Add host fs
- /:/hostfs:ro
# Add host net specifically
- /proc/net:/hostfs/proc/net
# Add host docker
- /var/run/docker.sock:/var/run/docker.sock:z
environment:
- HOST_MOUNT_PREFIX=/hostfs
- HOST_PROC=/hostfs/proc
certbot:
image: git.mrmeeb.stream/mrmeeb/certbot-cron:latest
container_name: certbot
restart: unless-stopped
ports:
- 80:80
volumes:
- ${DROOT}/certbot:/config
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=Europe/London
- APPRISE_URL=${CERTBOT_DISCORD_WEBHOOK}
- NOTIFY_ON_FAILURE=true
- EMAIL=admin@mrmeeb.stream
- CERT_COUNT=1
- DOMAINS=${HOSTNAME_FULL},${HOSTNAME}
- PLUGIN=standalone
- CUSTOM_CA=mrmeeb.pem
- CUSTOM_CA_SERVER=https://ca.internal/acme/acme/directory
@@ -0,0 +1,12 @@
[[stack]]
name = "fcos-test-4-supporting-services"
description = "Supporting services for fcos-test-4"
tags = ["fcos-test-4"]
[stack.config]
server_id = "fcos-test-4"
project_name = "supporting-services"
run_directory = "stacks/supporting-services"
file_paths = ["docker-compose.yaml"]
env_file_path = ".komodo-env"
additional_env_files = [".env","/var/docker/.ansible-generated.env"]
linked_repo = "mrmeeb-labs/fcos-test-4"
File diff suppressed because it is too large Load Diff