We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 868399d commit f449666Copy full SHA for f449666
.github/workflows/ci.yml
@@ -59,7 +59,6 @@ jobs:
59
run: |
60
pip install localstack localstack
61
docker pull localstack/localstack-pro
62
- localstack auth set-token $LOCALSTACK_AUTH_TOKEN
63
localstack start -d
64
localstack wait -t 30
65
src/index.js
@@ -539,7 +539,7 @@ class LocalstackPlugin {
539
env.DOCKER_CMD = 'sudo docker';
540
}
541
const options = { env: env, maxBuffer };
542
- return exec('localstack start -d --image localstack/localstack-pro', options)
+ return exec('localstack start -d', options)
543
.then(getContainer)
544
.then((containerID) => addNetworks(containerID))
545
.then((containerID) => checkStatus(containerID));
0 commit comments