标签:cep image mamicode 启动 centos iptable art svn dock
约定:
OS:Centos7.6
目标:SVN-Server
1.检查镜像
docker search svn
2.下载镜像
docker pull garethflowers/svn-server
3.启动容器
docker run --restart always --name mysvn -d -v /opt/svn-server:/var/opt/svn -p 3690:3690 garethflowers/svn-server
4.端口放行
iptables -I INPUT -p tcp --dport 3690 -j ACCEPT
service iptables save
5.访问测试
标签:cep image mamicode 启动 centos iptable art svn dock
原文地址:https://www.cnblogs.com/oumi/p/13532560.html