shell 在Podman容器中获取时间不正确

hi3rlvi2  于 2022-11-30  发布在  Shell
关注(0)|答案(1)|浏览(166)

我使用此命令启动podman容器

podman run --name test --rm -ti alpine /bin/sh

更新使用时区

apk add --no-cache tzdata  &&  ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

然而,我得到了不同结果
在podman容器中为"2022 - 11 - 28_11 - 05 - 23" enter image description here
我的mac是"2022 - 11 - 28_17 - 59 - 03"
enter image description here
我想得到正确的时间?

ercv8c1e

ercv8c1e1#

使用此命令解决问题

podman machine ssh sudo date --set $(date +'%Y-%m-%dT%H:%M:%S')

github issue

相关问题