AZEROTHCORE - ./bin/acore-docker-build 脚本 returns 一个“无法在本地找到图像 'acbuild:latest'
AZEROTHCORE - ./bin/acore-docker-build script returns a "unable to find image 'acbuild:latest' locally
我正在尝试使用 Docker 设置 AzerothCore。我按照此处的说明进行操作:http://www.azerothcore.org/wiki/Install-with-Docker,并使用以下命令克隆了 git 存储库:
git clone https://github.com/azerothcore/azerothcore-wotlk.git
git 克隆成功,我将 dbc
、maps
、mmaps
和 vmaps
文件夹移动到 ~/azerothcore-wotlk/
目录。
我运行 ./bin/acore-docker-generate-etc
脚本成功。
然而,当我 运行 ./bin/acore-docker-build
脚本时,出现以下错误:
Reading package lists...
E: Release file for http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease is not valid yet (invalid for another 1h 11min 29s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease is not valid yet (invalid for another 1h 12min 24s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease is not valid yet (invalid for another 1h 13min 44s). Updates for this repository will not be applied.
The command '/bin/sh -c apt update && apt install -y git cmake make gcc g++ clang libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev libace-6.* libace-dev' returned a non-zero code: 100
Unable to find image 'acbuild:latest' locally
docker: Error response from daemon: pull access denied for acbuild, repository does not exist or may require 'docker login'.
See 'docker run --help'.
我在这里检查了其他问题,我看到的唯一回复是这可能是由重新包装引起的。但是,我使用的是来自 git 的实际存储库。有人可以告诉我我做错了什么吗?
谢谢!
错误指示找不到 acbuild:latest
实际上只是先前构建所述图像时出错的结果。 acore-docker-build
的想法是构建 docker 图像 acbuild:latest
以便之后可以 运行。该脚本不验证图像的生成是否成功,然后尝试 运行 它。
您的实际错误在所有这些行中:
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease is not valid yet (invalid for another 1h 13min 44s). Updates for this repository will not be applied.
这似乎是一个 timezone/time 设置问题,您可以在以下问题中找到许多解决此问题的建议(第二个与 docker 特别相关):
我正在尝试使用 Docker 设置 AzerothCore。我按照此处的说明进行操作:http://www.azerothcore.org/wiki/Install-with-Docker,并使用以下命令克隆了 git 存储库:
git clone https://github.com/azerothcore/azerothcore-wotlk.git
git 克隆成功,我将 dbc
、maps
、mmaps
和 vmaps
文件夹移动到 ~/azerothcore-wotlk/
目录。
我运行 ./bin/acore-docker-generate-etc
脚本成功。
然而,当我 运行 ./bin/acore-docker-build
脚本时,出现以下错误:
Reading package lists...
E: Release file for http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease is not valid yet (invalid for another 1h 11min 29s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease is not valid yet (invalid for another 1h 12min 24s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease is not valid yet (invalid for another 1h 13min 44s). Updates for this repository will not be applied.
The command '/bin/sh -c apt update && apt install -y git cmake make gcc g++ clang libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev libace-6.* libace-dev' returned a non-zero code: 100
Unable to find image 'acbuild:latest' locally
docker: Error response from daemon: pull access denied for acbuild, repository does not exist or may require 'docker login'.
See 'docker run --help'.
我在这里检查了其他问题,我看到的唯一回复是这可能是由重新包装引起的。但是,我使用的是来自 git 的实际存储库。有人可以告诉我我做错了什么吗?
谢谢!
错误指示找不到 acbuild:latest
实际上只是先前构建所述图像时出错的结果。 acore-docker-build
的想法是构建 docker 图像 acbuild:latest
以便之后可以 运行。该脚本不验证图像的生成是否成功,然后尝试 运行 它。
您的实际错误在所有这些行中:
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease is not valid yet (invalid for another 1h 13min 44s). Updates for this repository will not be applied.
这似乎是一个 timezone/time 设置问题,您可以在以下问题中找到许多解决此问题的建议(第二个与 docker 特别相关):