mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-18 16:58:27 -04:00
Merge pull request #623 from linuxserver/template-update2
remove s6v2 compatibility
This commit is contained in:
@@ -11,7 +11,6 @@ If adding multiple mods, enter them in an array separated by `|`, such as `DOCKE
|
|||||||
* Fork the repo, create a new branch based on the branch `template`.
|
* Fork the repo, create a new branch based on the branch `template`.
|
||||||
* Edit the `Dockerfile` for the mod. `Dockerfile.complex` is only an example and included for reference; it should be deleted when done.
|
* Edit the `Dockerfile` for the mod. `Dockerfile.complex` is only an example and included for reference; it should be deleted when done.
|
||||||
* Inspect the `root` folder contents. Edit, add and remove as necessary.
|
* Inspect the `root` folder contents. Edit, add and remove as necessary.
|
||||||
* The mod should be compatible with both s6v2 and s6v3 (until s6v2 based baseimages are deprecated).
|
|
||||||
* After all init scripts and services are created, run `find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print -exec chmod +x {} +` to fix permissions.
|
* After all init scripts and services are created, run `find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print -exec chmod +x {} +` to fix permissions.
|
||||||
* Edit this readme with pertinent info, delete these instructions.
|
* Edit this readme with pertinent info, delete these instructions.
|
||||||
* Finally edit the `.github/workflows/BuildImage.yml`. Customize the vars for `BASEIMAGE` and `MODNAME`. Set the versioning logic if needed.
|
* Finally edit the `.github/workflows/BuildImage.yml`. Customize the vars for `BASEIMAGE` and `MODNAME`. Set the versioning logic if needed.
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
|
||||||
|
|
||||||
if [ -f /usr/bin/apt ]; then
|
|
||||||
apt-get update
|
|
||||||
fi
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
|
||||||
|
|
||||||
# Determine if setup is needed
|
|
||||||
if [ ! -f /usr/local/lib/python***/dist-packages/sshuttle ] && \
|
|
||||||
[ -f /usr/bin/apt ]; then
|
|
||||||
## Ubuntu
|
|
||||||
apt-get install --no-install-recommends -y \
|
|
||||||
iptables \
|
|
||||||
openssh-client \
|
|
||||||
python3 \
|
|
||||||
python3-pip
|
|
||||||
pip3 install sshuttle
|
|
||||||
fi
|
|
||||||
if [ ! -f /usr/lib/python***/site-packages/sshuttle ] && \
|
|
||||||
[ -f /sbin/apk ]; then
|
|
||||||
# Alpine
|
|
||||||
apk add --no-cache \
|
|
||||||
iptables \
|
|
||||||
openssh \
|
|
||||||
py3-pip \
|
|
||||||
python3
|
|
||||||
pip3 install sshuttle
|
|
||||||
fi
|
|
||||||
|
|
||||||
chown -R root:root /root
|
|
||||||
chmod -R 600 /root/.ssh
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
|
||||||
|
|
||||||
sshuttle --dns --remote root@${HOST}:${PORT} 0/0 -x 172.17.0.0/16
|
|
||||||
Reference in New Issue
Block a user