-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(echo): Replace faulty instanceof check with static code check (#5678
) * chore: update prerelease script to use rimraf * refactor(handler): add error type guard for better handling * fix(ci): update docker-compose path in action.yml * ci(localstack): use e2e docker-compose for localstack * refactor(docker): rename compose file and update config * refactor(docker): use extends in docker-compose.yml * ci: Update docker-compose file for localstack * refactor(ci): rename docker-compose file and update usage * chore: Update package version and repository info
- Loading branch information
Showing
5 changed files
with
33 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: '3.1' | ||
|
||
services: | ||
localstack: | ||
container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}" | ||
image: "localstack/localstack:0.14.5" | ||
network_mode: bridge | ||
environment: | ||
- SERVICES=s3 | ||
ports: | ||
- "${DOCKER_LOCALSTACK_PORT:-4566}:4566" | ||
volumes: | ||
- "${TMPDIR:-/tmp/localstack}:/tmp/localstack" | ||
- "/var/run/docker.sock:/var/run/docker.sock" | ||
healthcheck: | ||
test: "bash -c 'AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test aws --endpoint-url=http://127.0.0.1:4566 s3 ls'" | ||
retries: 5 | ||
interval: 10s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters