【发布时间】:2022-11-12 17:27:04
【问题描述】:
我无法使用 mup 部署流星,并且出现以下错误
笔记
- 我的应用名称是
malfintech - 服务器:ubuntu(本地)
信息:
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.1 LTS
Release: 22.04
Codename: jammy
Started TaskList: Start Meteor
[10.1.140.30] - Start Meteor
[10.1.140.30] x Start Meteor: FAILED
------------------------------------STDERR------------------------------------
Error: No such image: mup-malfintech:latest
Error: No such image: mup-malfintech:latest
Error: No such image: mup-malfintech:previous
Error: No such image: mup-malfintech:previous
Error: No such image: mup-malfintech:latest
Removing docker containers. Errors about nonexistent endpoints and containers are normal.
Error: No such container: malfintech
Error response from daemon: endpoint malfintech not found
Error: No such container: malfintech-frontend
Error response from daemon: endpoint malfintech-frontend not found
Error: No such container: malfintech-nginx-letsencrypt
Error response from daemon: endpoint malfintech-nginx-letsencrypt not found
Error: No such container: malfintech-nginx-proxy
Error response from daemon: endpoint malfintech-nginx-proxy not found
Finished removing docker containers
invalid reference format
docker: open /opt/malfintech/config/env.list: no such file or directory.
See 'docker run --help'.
这是我的mup.js 配置:
module.exports = {
servers: {
one: {
host: '***',
username: 'dev',
password: '*****'
}
},
app: {
name: 'malfintech',
path: '../',
type: 'meteor',
docker: {
image: './docker',
},
buildOptions: {
serverOnly: true,
buildLocation: '/tmp',
},
servers: {
one: {},
},
env: {
"WEB_URL": "https://malfintech.com",
"ROOT_URL": "https://api.malfintech.com",
"MONGO_URL": "mongodb://*****/***"
},
enableUploadProgressBar: true
},
};
./docker 有zodern/meteor 图像的副本,只是将USER 从app 更改为dev(适用的地方)
很高兴提供任何有助于解决vodo的信息
【问题讨论】: