File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ public function build(Config $config): Manager
384
384
self ::SERVICE_GENERIC ,
385
385
$ this ->serviceFactory ->create (
386
386
ServiceInterface::SERVICE_GENERIC ,
387
- '' ,
387
+ $ config -> getServiceVersion ( self :: SERVICE_GENERIC ) ,
388
388
[
389
389
'environment ' => $ this ->converter ->convert (array_merge (
390
390
$ config ->getVariables (),
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ class CloudBaseSource implements SourceInterface
29
29
ServiceInterface::SERVICE_SELENIUM => false ,
30
30
ServiceInterface::SERVICE_NGINX => true ,
31
31
ServiceInterface::SERVICE_TLS => true ,
32
- ServiceInterface::SERVICE_VARNISH => true
32
+ ServiceInterface::SERVICE_VARNISH => true ,
33
+ ServiceInterface::SERVICE_GENERIC => true
33
34
];
34
35
35
36
/**
Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ class ServiceFactory
116
116
],
117
117
ServiceInterface::SERVICE_GENERIC => [
118
118
'image ' => 'alpine ' ,
119
- 'pattern ' => '%s '
119
+ 'version ' => 'latest ' ,
120
+ 'pattern ' => self ::PATTERN_STD
120
121
],
121
122
ServiceInterface::SERVICE_SELENIUM => [
122
123
'image ' => 'selenium/standalone-chrome ' ,
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ services:
109
109
condition : service_started
110
110
generic :
111
111
hostname : generic.magento2.docker
112
- image : alpine
112
+ image : ' alpine:latest '
113
113
environment :
114
114
- PHP_MEMORY_LIMIT=2048M
115
115
- UPLOAD_MAX_FILESIZE=64M
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ services:
150
150
condition : service_healthy
151
151
generic :
152
152
hostname : generic.magento2.docker
153
- image : alpine
153
+ image : ' alpine:latest '
154
154
environment :
155
155
- PHP_MEMORY_LIMIT=2048M
156
156
- UPLOAD_MAX_FILESIZE=64M
You can’t perform that action at this time.
0 commit comments