From 0e7ba9889045383e0712a347586d7a43891f71d9 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Thu, 26 Dec 2024 09:28:47 -0300 Subject: [PATCH] Changed backup docs to reflect new file --- content/advanced/backups.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/advanced/backups.md b/content/advanced/backups.md index a560d62..cb77319 100644 --- a/content/advanced/backups.md +++ b/content/advanced/backups.md @@ -58,10 +58,12 @@ vim yams 3. Update `your/install/location` with your new install location: ```bash +#!/bin/bash set -euo pipefail -dc="docker compose -f your/install/location/docker-compose.yaml -f your/install/location/docker-compose.custom.yaml" # -> Change this! -install_directory="your/install/location" # -> Change this! +# Constants +readonly DC="docker compose -f your/install/location/docker-compose.yaml -f your/install/location/docker-compose.custom.yaml" # -> Change this! +readonly INSTALL_DIRECTORY="your/install/location" # -> Change this! ``` 4. Move the `yams` script to `/usr/local/bin/`: