Accept an external_links list in the service configuration dictionary to create links to containers outside of the project

Signed-off-by: Jason Bernardino Alonso <jalonso@luminoso.com>
Signed-off-by: Mauricio de Abreu Antunes <mauricio.abreua@gmail.com>
This commit is contained in:
Jason Bernardino Alonso 2014-10-08 22:31:04 -04:00 committed by Jason Bernardino Alonso
commit 4257707244
3 changed files with 42 additions and 2 deletions

View file

@ -219,6 +219,26 @@ class ServiceTest(DockerClientTestCase):
]),
)
def test_start_container_with_external_links(self):
db = self.create_service('db')
web = self.create_service('web', external_links=['figtest_db_1',
'figtest_db_2',
'figtest_db_3:db_3'])
db.start_container()
db.start_container()
db.start_container()
web.start_container()
self.assertEqual(
set(web.containers()[0].links()),
set([
'figtest_db_1',
'figtest_db_2',
'db_3',
]),
)
def test_start_normal_container_does_not_create_links_to_its_own_service(self):
db = self.create_service('db')