diff --git a/scripts/default-run-docker.sh b/scripts/default-run-docker.sh index dad6189..f70df3a 100644 --- a/scripts/default-run-docker.sh +++ b/scripts/default-run-docker.sh @@ -4,6 +4,7 @@ export AWS_ACCESS_KEY_ID=localstack export AWS_SECRET_ACCESS_KEY=localstack export AWS_REGION=eu-central-1 export AWS_S3_ENDPOINT_URL=http://host.docker.internal:4566 +export AWS_SNS_ENDPOINT_URL=http://host.docker.internal:4566 export AWS_SQS_ENDPOINT_URL=http://host.docker.internal:4566 export AWS_S3_FORCE_PATH_STYLE=true @@ -12,6 +13,7 @@ docker run -p 5000:80 \ -e AWS_SECRET_ACCESS_KEY \ -e AWS_REGION \ -e AWS_S3_ENDPOINT_URL \ + -e AWS_SNS_ENDPOINT_URL \ -e AWS_SQS_ENDPOINT_URL \ -e AWS_S3_FORCE_PATH_STYLE \ --add-host=host.docker.internal:host-gateway \ diff --git a/scripts/default-run-unix.sh b/scripts/default-run-unix.sh index 691750a..86ca07e 100644 --- a/scripts/default-run-unix.sh +++ b/scripts/default-run-unix.sh @@ -4,6 +4,7 @@ export AWS_ACCESS_KEY_ID=localstack export AWS_SECRET_ACCESS_KEY=localstack export AWS_REGION=eu-central-1 export AWS_S3_ENDPOINT_URL=http://localhost:4566 +export AWS_SNS_ENDPOINT_URL=http://localhost:4566 export AWS_SQS_ENDPOINT_URL=http://localhost:4566 export AWS_S3_FORCE_PATH_STYLE=true diff --git a/scripts/default-run-windows.bat b/scripts/default-run-windows.bat index 24dac05..4f3d0a8 100644 --- a/scripts/default-run-windows.bat +++ b/scripts/default-run-windows.bat @@ -4,6 +4,7 @@ set AWS_ACCESS_KEY_ID=localstack set AWS_SECRET_ACCESS_KEY=localstack set AWS_REGION=eu-central-1 set AWS_S3_ENDPOINT_URL=http://localhost:4566 +set AWS_SNS_ENDPOINT_URL=http://localhost:4566 set AWS_SQS_ENDPOINT_URL=http://localhost:4566 set AWS_S3_FORCE_PATH_STYLE=true