Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,702
Community Members
 
Community Events
184
Community Groups

bitbucket pipeline can't find localstack service

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:

  • apt-get update
  • apt-get install -y netcat
  • nc -zv 127.0.0.1 4569

The netcat command isn't printing out anything. I presume 127.0.0.1 is not the correct address :(

2 comments

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.

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"

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events