docker run集合

1. siomiz/softethervpn

bash 复制代码
docker run -d --name vpn \
-p 443:443 \
-p 5555:5555 \
-p 500:500/udp \
-p 1194:1194/udp \
-p 4500:4500/udp \
-p 1701:1701/udp \
#默认客户端账号
-e USERNAME=root \
#默认客户端密码
-e PASSWORD=123456789 \
#管理端密码
-e SPW=123456789 \
#
-e PSK=mysoft  \
--cap-add NET_ADMIN \
siomiz/softethervpn


#参考官网资料 https://hub.docker.com/r/softethervpn/vpnserver
version: '3'

services:
  softether:
    image: softethervpn/vpnserver:stable
    cap_add:
      - NET_ADMIN
    restart: always
    ports:
      - 53:53
      - 444:443
      - 992:992
      - 1194:1194/udp
      - 5555:5555
      - 500:500/udp
      - 4500:4500/udp
      - 1701:1701/udp
    volumes:
      - "/etc/localtime:/etc/localtime:ro"
      - "/etc/timezone:/etc/timezone:ro"
      - "./softether_data:/mnt"
      - "./softether_log:/root/server_log"
      - "./softether_packetlog:/root/packet_log"
      - "./softether_securitylog:/root/security_log"

2. speedtest-x

bash 复制代码
docker run -d --name speedtest-x --restart always -p 9001:80 -it badapple9/speedtest-x

3. sameersbnBind dns

bash 复制代码
docker run --name dns -d --restart=always \
--publish 53:53/tcp \
--publish 53:53/udp \
--publish 24999:10000/tcp \
-v /etc/localtime:/etc/localtime \
-v /usr/hsb/03configs/dns/:/data \
--env='WEBMIN_INIT_SSL_ENABLED=false'  \
--env='ROOT_PASSWORD=123'  \
sameersbn/bind
相关推荐
爱喝矿泉水的猛男2 分钟前
MacOS彻底清除docker及image
运维·docker·容器
HalvmånEver12 分钟前
Linux:基础开发工具(四)
linux·运维·服务器·开发语言·学习·makefile
王哈哈^_^19 分钟前
Ubuntu系统CUDA完整安装指南
linux·运维·服务器·pytorch·ubuntu
q***116528 分钟前
在Nginx上配置并开启WebDAV服务的完整指南
java·运维·nginx
Bdygsl33 分钟前
Linux小程序(1)—— 简单进度条
linux·运维·服务器
adnyting1 小时前
【Linux日新月异(十)】CentOS 7 文件系统结构深度解剖:从根到叶的完整指南
linux·运维·centos
王煜苏1 小时前
最新版idea2025 配置docker 打包spring-boot项目到生产服务器全流程,含期间遇到的坑
java·docker·容器
给算法爸爸上香2 小时前
模型部署在docker中对外提供服务
docker·容器·模型部署·模型推理
可可苏饼干2 小时前
TOMCAT
java·运维·学习·tomcat