docs: Add 16, update 2 and remove 2 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s

This commit is contained in:
j
2026-01-26 21:17:15 +13:00
parent eebd3efcf3
commit 70dab12114
20 changed files with 411 additions and 541 deletions

10
graylog/_volumes.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Define volume items for graylog containers
# These are used across backup, restore, create, and destroy operations
# Docker Compose creates volumes with project name prefix: {project}_{volume_name}
get_graylog_volumes() {
echo "volume:mongodb_data:${CONTAINER_NAME}_mongodb_data"
echo "volume:opensearch_data:${CONTAINER_NAME}_opensearch_data"
echo "volume:graylog_data:${CONTAINER_NAME}_graylog_data"
}