You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Email with [sSMTP](https://wiki.debian.org/sSMTP)
90
+
- Apprise (with it's [multitude](https://github.com/caronc/apprise#supported-notifications) of notifications)
91
+
- both native [caronc/apprise](https://github.com/caronc/apprise) and the standalone [linuxserver/docker-apprise-api](https://github.com/linuxserver/docker-apprise-api)
92
+
93
+
Further additions are welcome - suggestions or PR!
94
+
Initiated and first contributed by [yoyoma2](https://github.com/yoyoma2).
79
95
80
-
A simple email notification function is added, with a generic example and DSM/Ssmtp script by [yoyoma2](https://github.com/yoyoma2). Further addons are welcome, suggestions or PR!
81
96
82
97
### :warning:`-r flag` disclaimer and warning
83
98
**Wont auto-update the containers, only their images. (compose is recommended)**
@@ -89,6 +104,27 @@ Containers need to be manually stopped, removed and created again to run on the
89
104
- Not respecting `--profile` options when re-creating the container.
90
105
- Not working well with containers created by Portainer.
91
106
107
+
### Workaround for non **amd64** / **arm64**
108
+
`regctl` provides binaries for amd64/arm64, to use on other architecture you could try this workaround.
109
+
Run regctl in a contianer wrapped in a shell script. Copied from [regclient/docs/install.md](https://github.com/regclient/regclient/blob/main/docs/install.md):
110
+
111
+
```sh
112
+
cat >regctl <<EOF
113
+
#!/bin/sh
114
+
opts=""
115
+
case "\$*" in
116
+
"registry login"*) opts="-t";;
117
+
esac
118
+
docker container run \$opts -i --rm --net host \\
119
+
-u "\$(id -u):\$(id -g)" -e HOME -v \$HOME:\$HOME \\
120
+
-v /etc/docker/certs.d:/etc/docker/certs.d:ro \\
121
+
ghcr.io/regclient/regctl:latest "\$@"
122
+
EOF
123
+
chmod 755 regctl
124
+
```
125
+
Test it with `./regctl --help` and then either add the file to the same path as *dockcheck.sh* or in your path (eg. `~/.local/bin/regctl`).
126
+
127
+
92
128
## `dc_brief.sh`
93
129
Just a brief, slimmed down version of the script to only print what containers got updates, no updates or errors.
0 commit comments