diff options
author | Alex <alex@adnab.me> | 2024-01-17 12:00:23 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-01-17 12:00:23 +0000 |
commit | 02638285602c0c157fef411b70978c6499d0367a (patch) | |
tree | 6d3564d0aaae418ad6845ac3abdf2737b9f81282 /doc/book/cookbook/real-world.md | |
parent | 9cfeea389a1274d4d3c1f4b7072b0c056af410ef (diff) | |
parent | ee57dd922b9c396298473b41e4046c8d00ee77d5 (diff) | |
download | garage-02638285602c0c157fef411b70978c6499d0367a.tar.gz garage-02638285602c0c157fef411b70978c6499d0367a.zip |
Merge pull request 'Garage v0.9.1' (#689) from rel-v0.9.1 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/689
Diffstat (limited to 'doc/book/cookbook/real-world.md')
-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 ea4ce1f9..ce0abddd 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -85,14 +85,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.0`) 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.0` but it's up to you +We encourage you to use a fixed tag (eg. `v0.9.1`) 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.1` 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.0 +sudo docker pull dxflrs/garage:v0.9.1 ``` ## Deploying and configuring Garage @@ -157,7 +157,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.0 + dxflrs/garage:v0.9.1 ``` With this command line, Garage should be started automatically at each boot. @@ -171,7 +171,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.0 + image: dxflrs/garage:v0.9.1 network_mode: "host" restart: unless-stopped volumes: |