docker compose version 第一步 - 更新服务器 sudo apt update && sudo apt upgrade 第二步 - 创建 docker-compose.yml 文件 .yml 文件包含了创建 WireGuard UI Docker 容器所需的所有信息。 sudo mkdir /opt/wg-ui sudo nano /opt/wg-ui/docker-compose.yml 粘贴以下配置: services: wireguard: image: lin...
Wireguard web interface. Contribute to pylover/wireguard-ui development by creating an account on GitHub.
docker run --rm -it -v /tmp/wireguard:/data -p 8080:8080 -e "WG_CONF_DIR=/data" vx3r/wg-gen-web:latest 也可以通过 Docker Compose 启动 version: '3.6' services: wg-gen-web-demo: image: vx3r/wg-gen-web:latest container_name: wg-gen-web-demo restart: unless-stopped expose: - ...
1.1.安装wg-easy镜像 wg-easy/wg-easy: The easiest way to run WireGuard VPN + Web-based Admin UI. 基于Wireguard技术的虚拟个人网络搭建: 基于wireguard的内网穿透技术~ Wireguard 全互联模式(full mesh)配置指南 – 云原生实验室 - Kubernetes|Docker|Istio|Envoy|Hugo|Golang|云原生 这个新建的容器内会多一...
./wireguard-ui Using docker compose Theexamples/docker-composefolder contains example docker-compose files. Choose the example which fits you the most, adjust the configuration for your needs, then run it like below: docker-compose up Environment Variables ...
GitHub - wg-easy/wg-easy: The easiest way to run WireGuard VPN + Web-based Admin UI.wg-easy是一个非常easy的跑WireGuard server的docker镜像。 你可以先pull一下镜像,以检查网络问题。 docker image pull ghcr.io/wg-easy/wg-easy 之后就可以跑docker镜像了(你也可以看https://github.com/wg-easy/...
上面是运行wireguard-ui服务的docker-compose文件,直接运行起来,如果是在云上,需要在安全组中开放5000端口以及wireguard的udp51820端口 在wireguard-ui服务的页面上创建客户端,其实会直接通过模板格式同步到wg的配置文件中,因此需要实时的监听wg配置文件的变化,然后重启wg服务,实现客户端配置的实时变化. 在linux中监听配置...
[done] NAS中docker一个WireGuard Easy服务端 The easiest way to run WireGuard VPN + Web-based Admin UI. 主路由为OpenWrt的情况, 作为远程VPN的服务端 这样外出的电脑和手机等就可以通过这个WireGuard将数据VPN回主路由OpenWrt的物理位置 设置繁琐, 放弃该方案 ...
系列文章前情提要: 1.WireGuard系列文章(一):什么是V**[1]2.WireGuard 系列文章(二):WireGuard 简介 - 快速、现代、安全的 V** 隧道[2] WireGuard...UI 如下: WireGuard UI 启动 WireGuard 后会有 2 个服务: WireGua...
docker-compose 内容如下(基于原始内容做了部分调整,调整内容见注释): version: "3.4" services: netmaker: container_name: netmaker image: gravitl/netmaker:v0.9.1 volumes: - ./dnsconfig:/root/config/dnsconfig # 将 dnsconfig 直接放到当前目录 - /usr/bin/wg:/usr/bin/wg - ./sqldata:/root/...