fixtures: include service name in container name

This commit is contained in:
Einar Forselv 2019-11-26 14:04:37 +01:00
parent ed3774ad14
commit d27ff28f53
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def containers(project="default", containers=[]):
return [
{
'Id': container.get('id', generate_sha256()),
'Name': ''.join(random.choice(string.ascii_lowercase) for i in range(16)),
'Name': container.get('service') + '_' + ''.join(random.choice(string.ascii_lowercase) for i in range(16)),
'Config': {
'Image': 'restic-volume-backup_backup',
'Labels': {