Skip to content

Commit

Permalink
fix: oops, use 500 MB not 50KB.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisparnin committed Sep 18, 2020
1 parent 9c71ba9 commit e86a2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/providers/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ async function createContainer(session, image, containerName, timeout) {
await conn.run(image, '/bin/sh',
{
// Total Bytes a container can consume before being killed.
Memory: 512000,
Memory: 524288000,
// Units allocated to a container. 1000000000 units = 1 core.
NanoCPUs: 500000000
});
Expand Down

0 comments on commit e86a2c9

Please sign in to comment.