Compare commits

..

2 Commits

Author SHA1 Message Date
Thierry Pouplier
4a57ca69b2 fix: switch to linuxserver/wireguard instead of wg-easy 2026-05-05 01:17:57 +00:00
Thierry Pouplier
293429a124 feat: add WireGuard VPN stack with wg-easy 2026-05-04 22:46:50 +00:00
3 changed files with 29 additions and 13 deletions

View File

@@ -26,9 +26,7 @@ services:
- "traefik.http.routers.webui-https.tls.certresolver=njalla"
hermes:
build:
context: ./hermes
dockerfile: Dockerfile
image: nousresearch/hermes-agent:latest
container_name: hermes
restart: always
# Gateway run enables the internal API server on port 8642

View File

@@ -1,10 +0,0 @@
FROM nousresearch/hermes-agent:latest
# Install Chromium for browser tool
RUN apt-get update && apt-get install -y --no-install-recommends \
chromium \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean
# Set environment variable for Chromium path
ENV CHROME_EXECUTABLE=/usr/bin/chromium

28
vpn/compose.yml Normal file
View File

@@ -0,0 +1,28 @@
version: "3.8"
services:
wireguard:
image: ghcr.io/linuxserver/wireguard:latest
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
- PGID=1000
- TZ=America/Montreal
ports:
- "51820:51820/udp"
volumes:
- /mnt/HoardingCow_docker_data/WireGuard:/config: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