我正在使用 – image:peopleperhour / dynamodb作为我的CircleCI配置文件中的docker镜像.
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直到后来才发生.但是一旦发生错误,所有测试都会失败.
- image: peopleperhour/dynamodb
environment:
MAX_HEAP_SIZE: 2048m
HEAP_NEWSIZE: 512m
有想法该怎么解决这个吗?
作为解决方法,您可以尝试为容器指定重新启动策略:
原文链接:https://www.f2er.com/docker/436925.html- image: peopleperhour/dynamodb
restart: on-failure # Restart the container if it exits due to an error
environment:
MAX_HEAP_SIZE: 2048m
HEAP_NEWSIZE: 512m