我Docker为Spring Boot应用程序创建了一个图像。
我的Dockerfile:
# Start with a base image containing Java runtime
FROM openjdk:8-jdk-alpine
# Add a volume pointing to /tmp
VOLUME /tmp
# Make port 8080 available to the world outside this container
EXPOSE 8080
# The application's jar file
ARG JAR_FILE=target/demo-app-0.0.1-SNAPSHOT.jar
# Add the application's jar to the container
ADD ${JAR_FILE} demo-app.jar
# Run the jar file
CMD ["java", "-jar", "/demo-app.jar"]
推了它heroku container:push appshub/demo-app
。
释放了它heroku container:release appshub/demo-app
。
在发布过程中我总是遇到同样的错误:
发布图像 appshub/demo-app 或 trata-ololo-35436305...!
▸ 名称无效
我发现Deploy Existing Docker Image To Heroku和Heroku docker 部署对我不起作用,在官方文档或网络中搜索也没有帮助。
如何调试这个问题?
慕雪6442864
相关分类