diff options
author | Alex Auvolat <alex@adnab.me> | 2023-06-14 13:02:46 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-14 13:02:46 +0200 |
commit | 187240e539f30036eb76785227ee8095ef4dd355 (patch) | |
tree | 4a175c2fb11e6be6a6fa24b428d92a41b7067170 /doc/book/cookbook/real-world.md | |
parent | 567036712616c39563b5ebf1ae6210245dbd7cc4 (diff) | |
parent | 5e291c64b3539c11cd4f107852686c7865b8b036 (diff) | |
download | garage-187240e539f30036eb76785227ee8095ef4dd355.tar.gz garage-187240e539f30036eb76785227ee8095ef4dd355.zip |
Merge branch 'main' into next
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 |