mirror of
https://github.com/MSWS/Homelab.git
synced 2025-12-05 23:00:24 -08:00
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:
@@ -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" && \
|
||||
|
||||
@@ -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
|
||||
|
||||
1
invidious/inv_sig_helper
Submodule
1
invidious/inv_sig_helper
Submodule
Submodule invidious/inv_sig_helper added at 168521dee9
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user