diff options
author | Alex <alex@adnab.me> | 2023-06-14 10:57:32 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-06-14 10:57:32 +0000 |
commit | 5e291c64b3539c11cd4f107852686c7865b8b036 (patch) | |
tree | 62e8bf6e275ce045e29baf7a660706899e54ed8e /doc/book/cookbook/real-world.md | |
parent | 01346143ca09eab262f0d8f8a0a744c2f6d667cc (diff) | |
parent | 9092c71a01311f8f7174fa03facdb4d95a7b1389 (diff) | |
download | garage-5e291c64b3539c11cd4f107852686c7865b8b036.tar.gz garage-5e291c64b3539c11cd4f107852686c7865b8b036.zip |
Merge pull request 'Documentation updates' (#587) from doc-updates into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/587
Diffstat (limited to 'doc/book/cookbook/real-world.md')
-rw-r--r-- | doc/book/cookbook/real-world.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/book/cookbook/real-world.md b/doc/book/cookbook/real-world.md index 08266b23..7061069f 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -197,6 +197,12 @@ The `garage` binary has two purposes: Ensure an appropriate `garage` binary (the same version as your Docker image) is available in your path. If your configuration file is at `/etc/garage.toml`, the `garage` binary should work with no further change. +You can also use an alias as follows to use the Garage binary inside your docker container: + +```bash +alias garage="docker exec -ti <container name> /garage" +``` + You can test your `garage` CLI utility by running a simple command such as: ```bash @@ -339,7 +345,7 @@ garage layout apply ``` **WARNING:** if you want to use the layout modification commands in a script, -make sure to read [this page](@/documentation/reference-manual/layout.md) first. +make sure to read [this page](@/documentation/operations/layout.md) first. ## Using your Garage cluster |