Skip to content

Commit

Permalink
Update files from update script
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 3, 2024
1 parent 13a5472 commit 8a4e555
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```
Expand Down
6 changes: 3 additions & 3 deletions docs/5min-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a4e555

Please sign in to comment.