diff options
author | Alex Auvolat <alex@adnab.me> | 2023-06-14 11:09:31 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-14 11:09:31 +0200 |
commit | 5a186be363ca5225a40bb4ecffb97b342e840269 (patch) | |
tree | d9dee65648cad0182e1772c930b74d639fd4b6bd /doc/book/cookbook | |
parent | 01346143ca09eab262f0d8f8a0a744c2f6d667cc (diff) | |
download | garage-5a186be363ca5225a40bb4ecffb97b342e840269.tar.gz garage-5a186be363ca5225a40bb4ecffb97b342e840269.zip |
Doc: update goals, add docker alias
Fix #235
Diffstat (limited to 'doc/book/cookbook')
-rw-r--r-- | doc/book/cookbook/real-world.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/book/cookbook/real-world.md b/doc/book/cookbook/real-world.md index 08266b23..0b9e016c 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 |