-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
70 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
**Stable Updates Published** | ||
|
||
* [Appservice Draupnir For All](https://github.com/the-draupnir-project/Draupnir): [v2.0.2](https://github.com/the-draupnir-project/Draupnir/releases/tag/v2.0.2) -> [v2.1.0](https://github.com/the-draupnir-project/Draupnir/releases/tag/v2.1.0) | ||
* [Authentication Service](https://github.com/element-hq/matrix-authentication-service): [0.12.0](https://github.com/element-hq/matrix-authentication-service/releases/tag/0.12.0) -> [0.13.0](https://github.com/element-hq/matrix-authentication-service/releases/tag/0.13.0) | ||
* Authentication Service Syn2Mas: 0.12.0 -> 0.13.0 | ||
* Borgmatic: 1.9.6 -> 1.9.9 | ||
* [Corporal](https://github.com/devture/matrix-corporal): [3.1.2](https://github.com/devture/matrix-corporal/releases/tag/3.1.2) -> [3.1.3](https://github.com/devture/matrix-corporal/releases/tag/3.1.3) | ||
* [Draupnir](https://github.com/the-draupnir-project/Draupnir): [v2.0.2](https://github.com/the-draupnir-project/Draupnir/releases/tag/v2.0.2) -> [v2.1.0](https://github.com/the-draupnir-project/Draupnir/releases/tag/v2.1.0) | ||
* [Exim Relay](https://github.com/devture/exim-relay): [4.98-r0-3](https://github.com/devture/exim-relay/releases/tag/4.98-r0-3) -> [4.98-r0-4](https://github.com/devture/exim-relay/releases/tag/4.98-r0-4) | ||
* [Grafana](https://github.com/grafana/grafana): [11.4.0](https://github.com/grafana/grafana/releases/tag/v11.4.0) -> [11.5.1](https://github.com/grafana/grafana/releases/tag/v11.5.1) | ||
* [Jitsi](https://github.com/jitsi/docker-jitsi-meet): [stable-9955](https://github.com/jitsi/docker-jitsi-meet/releases/tag/stable-9955) -> [stable-10008](https://github.com/jitsi/docker-jitsi-meet/releases/tag/stable-10008) | ||
* [Synapse Reverse Proxy Companion](https://github.com/nginx/nginx): [1.27.3-alpine](https://github.com/nginx/nginx/releases/tag/release-1.27.3) -> [1.27.4-alpine](https://github.com/nginx/nginx/releases/tag/release-1.27.4) | ||
* [Traefik](https://github.com/traefik/traefik): [v3.3.2](https://github.com/traefik/traefik/releases/tag/v3.3.2) -> [v3.3.3](https://github.com/traefik/traefik/releases/tag/v3.3.3) | ||
* [Vaultwarden](https://github.com/dani-garcia/vaultwarden): [1.33.0](https://github.com/dani-garcia/vaultwarden/releases/tag/1.33.0) -> [1.33.1](https://github.com/dani-garcia/vaultwarden/releases/tag/1.33.1) | ||
* [Alertmanager Receiver](https://github.com/metio/matrix-alertmanager-receiver): [2024.12.18](https://github.com/metio/matrix-alertmanager-receiver/releases/tag/2024.12.18) -> [2025.2.9](https://github.com/metio/matrix-alertmanager-receiver/releases/tag/2025.2.9) | ||
* [Vaultwarden](https://github.com/dani-garcia/vaultwarden): [1.33.1](https://github.com/dani-garcia/vaultwarden/releases/tag/1.33.1) -> [1.33.2](https://github.com/dani-garcia/vaultwarden/releases/tag/1.33.2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
install_date: 'Sat 11 Jan 2025 04:21:04 PM ' | ||
install_commit: ffc1374a227fbb1a36415ad4df71b6450d323d8f | ||
version: 7.4.4 | ||
install_date: 'Mon 10 Feb 2025 10:28:05 AM ' | ||
install_commit: a16b26b8e28bf644853f0f5a57aa0eacef36299b | ||
version: 7.4.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
# become: true | ||
|
||
pre_tasks: | ||
- name: Update apt cache. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
- name: Verify Docker Role | ||
hosts: all | ||
tasks: | ||
- name: Verify Docker binary is available | ||
command: docker version | ||
register: docker_version_result | ||
changed_when: false | ||
failed_when: docker_version_result.rc != 0 | ||
|
||
- name: Show Docker version details | ||
debug: | ||
msg: > | ||
Docker Version Output: | ||
{{ docker_version_result.stdout_lines | join('\n') }} | ||
- name: Verify Docker service is running | ||
command: systemctl is-active docker | ||
register: docker_service_status | ||
when: ansible_service_mgr == 'systemd' | ||
changed_when: false | ||
failed_when: docker_service_status.stdout.strip() != "active" | ||
|
||
- name: Display Docker service status | ||
debug: | ||
msg: "Docker service is {{ docker_service_status.stdout.strip() }}" | ||
when: ansible_service_mgr == 'systemd' | ||
|
||
- name: Pull the 'hello-world' image | ||
command: docker pull hello-world | ||
register: docker_pull_result | ||
changed_when: true | ||
failed_when: docker_pull_result.rc != 0 | ||
|
||
- name: Show result of pulling the 'hello-world' image | ||
debug: | ||
msg: > | ||
Pulling 'hello-world' completed with output: | ||
{{ docker_pull_result.stdout_lines | join('\n') }} | ||
- name: Run a test container (hello-world) | ||
command: docker run --rm hello-world | ||
register: docker_run_result | ||
changed_when: true | ||
failed_when: docker_run_result.rc != 0 | ||
|
||
- name: Display test container output | ||
debug: | ||
msg: > | ||
Running 'hello-world' container completed with output: | ||
{{ docker_run_result.stdout_lines | join('\n') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
install_date: 'Mon 03 Feb 2025 02:43:09 PM ' | ||
install_commit: 85363a91a0efd1a7ca4b7b714228b9b60d017cf0 | ||
version: v1.33.1-0 | ||
install_date: 'Mon 10 Feb 2025 10:28:05 AM ' | ||
install_commit: e4277ca249d9cb57f10a0e41672de3a59f671d00 | ||
version: v1.33.2-0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule upstream
updated
58 files