我是Docker的新手,现在尝试创建我的第一个docker-compose文件。 到目前为止,apache可以正常运行,但是我在mysql方面苦苦挣扎。
这是我的docker-compose.yaml
function init() {
gapi.load('auth2', function() { // Ready. });
}
错误是:
static getGoogleAPI=()=>{
if (!this.googleAPIPromise){
//Loading the Google API into an scrip element in the page
this.googleAPIPromise=new Promise((resolve, reject)=>{
window.start=()=>{
// resolve the promise
// When this script is loaded a var called gapi=window.gapi is made available
resolve(window.gapi)
//Tidy up
delete window.start;
};
const script = document.createElement("script");
script.src = `https://apis.google.com/js/platform.js?onload=start`;
script.async = true;
script.onerror=()=>reject();
document.body.appendChild(script);
});
}
//We return the just created promise
return this.googleAPIPromise;
}
我一直试图完全删除该卷或在末尾添加一个/ data。但这总是给我同样的错误。 Google也没有给我任何好的提示。
有人有主意吗?
答案 0 :(得分:0)
我现在想通了。我在Windows计算机上运行Docker,因此我必须在Docker App上重置凭据并再次输入。现在可以了。希望对其他人也有帮助。在Windows的Docker上,似乎无法按预期工作时,重置凭据是合理的。