alpine

作者: 牍中玉的小木屋 | 来源:发表于2019-12-02 10:02 被阅读0次

切换 aliyun 镜像

sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories

切换 科大镜像

sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories

安装 插件

apk add openrc --no-cache ( rc-service 需要使用 openrc )

步骤

sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
apk update
apk upgrade
apk add nginx
apk add openrc --no-cache
adduser -D -g 'www' www
mkdir /www
chown -R www:www /usr/share/nginx
chown -R www:www /www
rc-service nginx start
rc-update add nginx default

docker cp ./nginx.conf n1:/etc/nginx/nginx.conf
docker cp ./default.conf n1:/etc/nginx/conf.d/default.conf

参考文章

https://wiki.alpinelinux.org/wiki/Nginx

相关文章

网友评论

      本文标题:alpine

      本文链接:https://www.haomeiwen.com/subject/ajexbctx.html