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
相关推荐
JuiceFS1 天前
从 MLPerf Storage v2.0 看 AI 训练中的存储性能与扩展能力
运维·后端
chen9451 天前
mysql 3节点mgr集群部署
运维·后端
LH_R1 天前
OneTerm开源堡垒机实战(三):功能扩展与效率提升
运维·后端·安全
dessler1 天前
Hadoop HDFS-高可用集群部署
linux·运维·hdfs
少妇的美梦2 天前
logstash教程
运维
容器魔方2 天前
Bloomberg 正式加入 Karmada 用户组!
云原生·容器·云计算
chen9452 天前
k8s集群部署vector日志采集器
运维
chen9452 天前
aws ec2部署harbor,使用s3存储
运维
muyun28002 天前
Docker 下部署 Elasticsearch 8 并集成 Kibana 和 IK 分词器
elasticsearch·docker·容器
東雪蓮☆2 天前
深入理解 LVS-DR 模式与 Keepalived 高可用集群
linux·运维·服务器·lvs