I added localstack:localstack docker image for a service in my bitbucket pipeline.
The pipeline was triggered, and it launched the docker container with dynamodb service enabled. Then it ran my branch's build steps:
The netcat command isn't printing out anything. I presume 127.0.0.1 is not the correct address :(
Just in case.
In my case, It's worked setting de LOCALSTACK_HOSTNAME = localhost
and using it in aws endpoints:
image: node:8.10-alpine
pipelines:
default:
- step:
script:
- export ENVIRONMENT=docker
- export AWS_REGION=us-east-1
- export LOCALSTACK_HOSTNAME=localhost
- export HOSTNAME=localhost
- export AWS_ACCESS_KEY_ID=test
- export AWS_SECRET_ACCESS_KEY=test
- npm install
- npx fly test:local
services:
- localstack
definitions:
services:
localstack:
image: localstack/localstack
environment:
SERVICES: ses
LOCALSTACK_HOSTNAME: localhost
HOSTNAME: localhost
ports:
- "4567-4583:4567-4583"
- "8080:8080"
Could you fix that?
I have an error with localstack in bitbucket:
UnknownEndpoint: Inaccessible host: `localstack'. This service may not be available in the `us-east-1' region.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.