Git Product home page Git Product logo

Comments (3)

fheider avatar fheider commented on May 29, 2024

+1

from bbrun.

ndastur avatar ndastur commented on May 29, 2024

absolutely +1 I wonder if it's as straightforward as spinning up the other docker instances for the service. Not sure about docker to docker networking and if that is an issue?

from bbrun.

ndastur avatar ndastur commented on May 29, 2024

Hi @mserranom . So from https://confluence.atlassian.com/bitbucket/debug-your-pipelines-locally-with-docker-838273569.html

It seems like the test with build services should solve the problem.

Testing with build services
If your build would normally use services, for example, MySQL, you can use separate containers to test this locally, too.

To use services, start the service container before your main container.

For example with MySQL:

docker run --name my-mysql-name \
-e MYSQL_DATABASE: 'pipelines' \
-e MYSQL_RANDOM_ROOT_PASSWORD: 'yes' \
-e MYSQL_USER: 'test_user' \
-e MYSQL_PASSWORD: 'test_user_password' \
-d mysql:

Then, when you are running your main container, make sure to link it to the service container, using the --link option.

The example command in Step 3 would become:

docker run -it --link my-mysql-name:mysql --volume=/Users/myUserName/code/localDebugRepo:/localDebugRepo --workdir="/localDebugRepo" --memory=4g --memory-swap=4g --memory-swappiness=0 --entrypoint=/bin/bash python:2.7

from bbrun.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.