diff options
author | Alex <alex@adnab.me> | 2024-04-08 09:57:03 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-04-08 09:57:03 +0000 |
commit | 738bb2f09c09f7532558214065b8e0abbea0edd1 (patch) | |
tree | 0a89132b19562d5a6d48b69ad4318755f5a7216d /doc | |
parent | 8b663d8c5bccae2ccc831941779523c407bf43a5 (diff) | |
parent | 7dd7cb5759635b3a1c18660a171bd34a10043f6c (diff) | |
download | garage-738bb2f09c09f7532558214065b8e0abbea0edd1.tar.gz garage-738bb2f09c09f7532558214065b8e0abbea0edd1.zip |
Merge pull request 'Garage v0.9.4' (#798) from rel-0.9.4 into mainmain-0.9.x
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/798
Diffstat (limited to 'doc')
-rw-r--r-- | doc/book/cookbook/real-world.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/book/cookbook/real-world.md b/doc/book/cookbook/real-world.md index 9e226030..894f3db4 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -95,14 +95,14 @@ to store 2 TB of data in total. ## Get a Docker image Our docker image is currently named `dxflrs/garage` and is stored on the [Docker Hub](https://hub.docker.com/r/dxflrs/garage/tags?page=1&ordering=last_updated). -We encourage you to use a fixed tag (eg. `v0.9.3`) and not the `latest` tag. -For this example, we will use the latest published version at the time of the writing which is `v0.9.3` but it's up to you +We encourage you to use a fixed tag (eg. `v0.9.4`) and not the `latest` tag. +For this example, we will use the latest published version at the time of the writing which is `v0.9.4` but it's up to you to check [the most recent versions on the Docker Hub](https://hub.docker.com/r/dxflrs/garage/tags?page=1&ordering=last_updated). For example: ``` -sudo docker pull dxflrs/garage:v0.9.3 +sudo docker pull dxflrs/garage:v0.9.4 ``` ## Deploying and configuring Garage @@ -168,7 +168,7 @@ docker run \ -v /etc/garage.toml:/etc/garage.toml \ -v /var/lib/garage/meta:/var/lib/garage/meta \ -v /var/lib/garage/data:/var/lib/garage/data \ - dxflrs/garage:v0.9.3 + dxflrs/garage:v0.9.4 ``` With this command line, Garage should be started automatically at each boot. @@ -182,7 +182,7 @@ If you want to use `docker-compose`, you may use the following `docker-compose.y version: "3" services: garage: - image: dxflrs/garage:v0.9.3 + image: dxflrs/garage:v0.9.4 network_mode: "host" restart: unless-stopped volumes: |