Compare commits
5 Commits
feat/docke
...
acf45acdd9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
acf45acdd9 | ||
|
|
b021d0dba7 | ||
|
|
eea6db3ceb | ||
|
|
4a57ca69b2 | ||
|
|
293429a124 |
@@ -18,7 +18,11 @@ RUN apt-get update && \
|
|||||||
curl poppler-utils imagemagick \
|
curl poppler-utils imagemagick \
|
||||||
chromium xvfb fonts-noto-color-emoji fonts-unifont fonts-liberation fonts-ipafont-gothic fonts-wqy-zenhei fonts-tlwg-loma-otf fonts-freefont-ttf \
|
chromium xvfb fonts-noto-color-emoji fonts-unifont fonts-liberation fonts-ipafont-gothic fonts-wqy-zenhei fonts-tlwg-loma-otf fonts-freefont-ttf \
|
||||||
libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libcairo2 libcups2t64 libdbus-1-3 libdrm2 libgbm1 libglib2.0-0t64 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 \
|
libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libcairo2 libcups2t64 libdbus-1-3 libdrm2 libgbm1 libglib2.0-0t64 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 \
|
||||||
texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-xetex texlive-science && \
|
texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-xetex texlive-science \
|
||||||
|
qemu-user-static binfmt-support qemu-user-binfmt \
|
||||||
|
emacs-nox \
|
||||||
|
libportaudio2 \
|
||||||
|
wireguard-tools openresolv && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Non-root user for runtime; UID can be overridden via HERMES_UID at runtime
|
# Non-root user for runtime; UID can be overridden via HERMES_UID at runtime
|
||||||
@@ -57,7 +61,8 @@ RUN chmod -R a+rX /opt/hermes
|
|||||||
|
|
||||||
# ---------- Python virtualenv ----------
|
# ---------- Python virtualenv ----------
|
||||||
RUN uv venv && \
|
RUN uv venv && \
|
||||||
uv pip install --no-cache-dir -e ".[all]"
|
uv pip install --no-cache-dir -e ".[all]" && \
|
||||||
|
uv pip install --no-cache-dir sounddevice numpy faster-whisper
|
||||||
|
|
||||||
# ---------- Runtime ----------
|
# ---------- Runtime ----------
|
||||||
ENV HERMES_WEB_DIST=/opt/hermes/hermes_cli/web_dist
|
ENV HERMES_WEB_DIST=/opt/hermes/hermes_cli/web_dist
|
||||||
|
|||||||
@@ -26,9 +26,11 @@ services:
|
|||||||
- "traefik.http.routers.webui-https.tls.certresolver=njalla"
|
- "traefik.http.routers.webui-https.tls.certresolver=njalla"
|
||||||
|
|
||||||
hermes:
|
hermes:
|
||||||
image: nousresearch/hermes-agent:latest
|
build: ./
|
||||||
container_name: hermes
|
container_name: hermes
|
||||||
restart: always
|
restart: always
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
# Gateway run enables the internal API server on port 8642
|
# Gateway run enables the internal API server on port 8642
|
||||||
command: gateway run
|
command: gateway run
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
35
vpn/compose.yml
Normal file
35
vpn/compose.yml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
wireguard:
|
||||||
|
image: weejewel/wg-easy:latest
|
||||||
|
container_name: wireguard
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
- SYS_MODULE
|
||||||
|
environment:
|
||||||
|
- WG_HOST=vpn.lazyworkhorse.net
|
||||||
|
- PASSWORD=${WG_PASSWORD}
|
||||||
|
- WG_PORT=51820
|
||||||
|
- WG_DEFAULT_ADDRESS=10.8.0.x
|
||||||
|
- WG_DEFAULT_DNS=1.1.1.1,8.8.8.8
|
||||||
|
- WG_ALLOWED_IPS=0.0.0.0/0, ::/0
|
||||||
|
- WG_PERSISTENT_KEEPALIVE=25
|
||||||
|
- UI_TRAFFIC_STATS=true
|
||||||
|
- UI_CHART_TYPE=0
|
||||||
|
ports:
|
||||||
|
- "51820:51820/udp"
|
||||||
|
- "51821:51821/tcp"
|
||||||
|
volumes:
|
||||||
|
- /mnt/HoardingCow_docker_data/WireGuard:/etc/wireguard:rw
|
||||||
|
sysctls:
|
||||||
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
|
- net.ipv4.ip_forward=1
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- vpn_net
|
||||||
|
|
||||||
|
networks:
|
||||||
|
vpn_net:
|
||||||
|
external: true
|
||||||
|
name: vpn_net
|
||||||
Reference in New Issue
Block a user