2. 然后创建安装脚本,内容如下: # vim fedora_setup.sh #!/bin/sh # This script is meant to work around the differences on Fedora Core-based# distributions (Redhat, CentOS, ...) compared to other common Linux # distributions. # # Usage: ./fedora_setup.sh [setup.py options] #
arch=`uname -m` for i in SWIG/_{ec,evp}.i; do sed -i -e "s/opensslconf\./opensslconf-${arch}\./" "$i" done
# Modify these options if you want to change the way the docker daemon runs OPTIONS='--selinux-enabled --insecure-registry 10.0.0.10:5000' DOCKER_CERT_PATH=/etc/docker 然后重启docker服务: