diff --git a/README.md b/README.md index 694b266..a1b982c 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ It is common to see one of these: Let say you want to use official image, but a binary is missing. For the sake of the example, let's add `restic` a binary to manage encrypted backups. ``` # Your new custom image -FROM decidim:0.29.0-onbuild +FROM decidim:0.29.1-onbuild RUN apk --update --no-cache restic # You are done, restic is now available in your image. ``` diff --git a/docs/5min-tutorial.md b/docs/5min-tutorial.md index 7a3a93b..d4ac75b 100644 --- a/docs/5min-tutorial.md +++ b/docs/5min-tutorial.md @@ -38,12 +38,12 @@ docker-compose --version # 1.29.* is fine ``` ## Get the docker-compose -In an empty directory, download the [docker-compose quickstart](https://raw.githubusercontent.com/hfroger/docker/master/docker-compose.0.29.0.yml). +In an empty directory, download the [docker-compose quickstart](https://raw.githubusercontent.com/hfroger/docker/master/docker-compose.0.29.1.yml). ```bash mkdir my-participatory-platform cd my-participatory-platform -curl https://raw.githubusercontent.com/hfroger/docker/master/docker-compose.0.29.0.yml > docker-compose.yml +curl https://raw.githubusercontent.com/hfroger/docker/master/docker-compose.0.29.1.yml > docker-compose.yml ``` ## Run the docker-compose @@ -91,7 +91,7 @@ docker cp decidim:/home/decidim/app/db/migrate db/migrate And add these lines in your docker-compose.yml file: ```diff container_name: decidim - image: decidim/decidim:0.29.0 + image: decidim/decidim:0.29.1 volumes: - storage:/home/decidim/app/storage + - ./db/migrate:/home/decidim/app/migrate diff --git a/docs/contribute.md b/docs/contribute.md index 20ee99f..d7aad23 100644 --- a/docs/contribute.md +++ b/docs/contribute.md @@ -31,7 +31,7 @@ To debug and rebuild the images locally, you can: | ----------------- | ----------------- | ----------------- | ---------------------- | | `0.27.9` | `ruby:3.0.7-slim-buster`| `node_16_x` | `docker-compose -f decidim.0.27.yml up` | | `0.28.4` | `ruby:3.1.6-slim-bookworm`| `node_18_x` | `docker-compose -f decidim.0.28.yml up` | -| `0.29.0` | `ruby:3.2.5-slim-bookworm`| `node_18_x` | `docker-compose -f decidim.0.29.yml up` | +| `0.29.1` | `ruby:3.2.5-slim-bookworm`| `node_18_x` | `docker-compose -f decidim.0.29.yml up` | | `develop` | `ruby:3.3.5-slim-bookworm`| `node_18_x` | `docker-compose -f decidim.nightly.yml up` | ## Templates