CircleCI Docker退出代码137

前端之家收集整理的这篇文章主要介绍了CircleCI Docker退出代码137前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用 – image:peopleperhour / dynamodb作为我的CircleCI配置文件中的docker镜像.

在CircleCI中,它输出以下内容.

Initializing DynamoDB Local with the following configuration:
Port:   8000
InMemory:   false
DbPath: /var/dynamodb_local
SharedDb:   false
shouldDelayTransientStatuses:   false
CorsParams: *


Exited with code 137

第一个测试通过罚款,退出代码137直到后来才发生.但是一旦发生错误,所有测试都会失败.

我看到this链接,并将我的代码更改为以下没有运气.

  - image: peopleperhour/dynamodb
    environment:
        MAX_HEAP_SIZE: 2048m
        HEAP_NEWSIZE: 512m

有想法该怎么解决这个吗?

作为解决方法,您可以尝试为容器指定重新启动策略:

- image: peopleperhour/dynamodb
  restart: on-failure # Restart the container if it exits due to an error
  environment:
    MAX_HEAP_SIZE: 2048m
    HEAP_NEWSIZE: 512m
原文链接:https://www.f2er.com/docker/436925.html

猜你在找的Docker相关文章