feat: Add local services, vim, and Git config updates

- Add `inv_sig_helper` as a submodule reference in the repository
- Update `code-server` Dockerfile with `vim` package and new Git SSH key configuration
- Modify `invidious/compose.yml` to use a local `inv_sig_helper` image and comment out the remote image reference
- Add a new `watchtower-kboaz` service in `watchtower/compose.yml` with unique scheduling and custom command
This commit is contained in:
MSWS
2025-07-09 01:50:10 -07:00
parent 25f19173ec
commit d0cef24dc2
4 changed files with 14 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository -y ppa:git-core/ppa && \
apt-get update && \
apt-get install -y texlive-full curl wget git zoxide cargo && \
apt-get install -y texlive-full curl wget git zoxide cargo vim && \
rm -rf /var/lib/apt/lists/*
ENV PATH="$PATH:/config/.cargo/bin"
@@ -22,7 +22,7 @@ RUN git config --global user.name MSWS && \
git config --global user.email imodmaker@gmail.com && \
git config --global init.defaultBranch main && \
git config --global push.autoSetupRemote true && \
git config --global user.signingKey ~/.ssh/github && \
git config --global user.signingKey ~/.ssh/id_ed25519 && \
git config --global commit.gpgsign true && \
git config --global gpg.format ssh && \
git config --global alias.ca "commit -ca" && \

View File

@@ -41,7 +41,8 @@ services:
- cloudflared
inv_sig_helper:
image: quay.io/invidious/inv-sig-helper:latest
# image: quay.io/invidious/inv-sig-helper:latest
image: inv_sig_helper:local
command: ["--tcp", "0.0.0.0:12999"]
environment:
- RUST_LOG=info

Submodule invidious/inv_sig_helper added at 168521dee9

View File

@@ -7,3 +7,12 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
environment:
WATCHTOWER_SCHEDULE: "0 0 18 * * *"
watchtower-kboaz:
image: containrrr/watchtower
restart: always
container_name: watchtower-kboaz
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
WATCHTOWER_SCHEDULE: "0 * * * * *"
command: "kboaz-site-1"