“Alpine 修改docker的时区及安装telnet”的版本间的差异
跳到导航
跳到搜索
第26行: | 第26行: | ||
telnet smtp.163.com 25 | telnet smtp.163.com 25 | ||
</pre> | </pre> | ||
+ | |||
+ | =see also= | ||
+ | |||
+ | [https://blog.csdn.net/isea533/article/details/87261764 Docker 镜像,基于 alpine 系统的时区配置] |
2021年8月18日 (三) 10:33的版本
修改为cst 中国标准时间
#修改源 cat /etc/apk/repositories http://mirrors.aliyun.com/alpine/v3.12/main http://mirrors.aliyun.com/alpine/v3.12/community apk add --update nodejs npm #RUN 表明 这是在容器里面的 RUN apk add -U tzdata #设置时区 RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ && echo 'Asia/Shanghai' >/etc/timezone
安装telnet
#Alpine镜像中的telnet在3.7版本后被转移至busybox-extras包中 apk update apk add busybox-extras telnet smtp.163.com 25