Skip to content

Commit

Permalink
Update localstack version (#3661)
Browse files Browse the repository at this point in the history
Update localstack version

Signed-off-by: Edwin Greene <edwin.greene@hedera.com>
  • Loading branch information
edwin-greene committed Apr 27, 2022
1 parent 0b5a739 commit 03a216f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hedera-mirror-rest/__tests__/integrationS3Ops.js
Expand Up @@ -25,7 +25,7 @@ const {GenericContainer} = require('testcontainers');
const {isDockerInstalled} = require('./integrationUtils');

const localstackImageName = 'localstack/localstack';
const localstackImageTag = '0.12.19.1';
const localstackImageTag = 'latest';
const defaultS3Port = 4566;

class S3Ops {
Expand All @@ -39,6 +39,7 @@ class S3Ops {
logger.info(`Starting localstack docker container with image ${image}`);
const container = await new GenericContainer(image)
.withEnv('SERVICES', 's3')
.withEnv('EAGER_SERVICE_LOADING', 1)
.withExposedPorts(defaultS3Port)
.start();
logger.info('Started dockerized localstack');
Expand Down

0 comments on commit 03a216f

Please sign in to comment.