diff options
author | Alex <alex@adnab.me> | 2024-09-22 13:02:02 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-09-22 13:02:02 +0000 |
commit | a18b3f0d1fb932df5abce6f5e79169ca01006e3b (patch) | |
tree | 3100af88e9c1be1f5259de7af950f0e6c5dbfa4c /doc/book/cookbook | |
parent | c731f0291a1eff1650fb6c648eb111a4b5e01516 (diff) | |
parent | 7a143f46fc0870fd0763c2161e41430681fa51ab (diff) | |
download | garage-a18b3f0d1fb932df5abce6f5e79169ca01006e3b.tar.gz garage-a18b3f0d1fb932df5abce6f5e79169ca01006e3b.zip |
Merge pull request 'Garage v1.0.1' (#881) from rel-v1.0.1 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/881
Diffstat (limited to 'doc/book/cookbook')
-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 48d2b369..751609db 100644 --- a/doc/book/cookbook/real-world.md +++ b/doc/book/cookbook/real-world.md @@ -96,14 +96,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. `v1.0.0`) and not the `latest` tag. -For this example, we will use the latest published version at the time of the writing which is `v1.0.0` but it's up to you +We encourage you to use a fixed tag (eg. `v1.0.1`) and not the `latest` tag. +For this example, we will use the latest published version at the time of the writing which is `v1.0.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:v1.0.0 +sudo docker pull dxflrs/garage:v1.0.1 ``` ## Deploying and configuring Garage @@ -171,7 +171,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:v1.0.0 + dxflrs/garage:v1.0.1 ``` With this command line, Garage should be started automatically at each boot. @@ -185,7 +185,7 @@ If you want to use `docker-compose`, you may use the following `docker-compose.y version: "3" services: garage: - image: dxflrs/garage:v1.0.0 + image: dxflrs/garage:v1.0.1 network_mode: "host" restart: unless-stopped volumes: |