fixtures: include service name in container name
This commit is contained in:
parent
ed3774ad14
commit
d27ff28f53
|
@ -33,7 +33,7 @@ def containers(project="default", containers=[]):
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
'Id': container.get('id', generate_sha256()),
|
'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': {
|
'Config': {
|
||||||
'Image': 'restic-volume-backup_backup',
|
'Image': 'restic-volume-backup_backup',
|
||||||
'Labels': {
|
'Labels': {
|
||||||
|
|
Loading…
Reference in New Issue