File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010cd ..
1111git clone https://github.com/EasyEngine/easyengine.git easyengine --depth=1
1212cd easyengine
13- echo ' travis_test' > VERSION
1413
1514# Copy tests to EE repo
1615rm -r features
Original file line number Diff line number Diff line change @@ -12,14 +12,15 @@ class Site_Docker {
1212 * @return String docker-compose.yml content string.
1313 */
1414 public function generate_docker_compose_yml ( array $ filters = [] ) {
15- $ base = [];
15+ $ img_versions = EE \Utils \get_image_versions ();
16+ $ base = [];
1617
1718 $ restart_default = [ 'name ' => 'always ' ];
1819 $ network_default = [ 'name ' => 'site-network ' ];
1920
2021 // nginx configuration.
2122 $ nginx ['service_name ' ] = [ 'name ' => 'nginx ' ];
22- $ nginx ['image ' ] = [ 'name ' => 'easyengine/nginx:v ' . EE_VERSION ];
23+ $ nginx ['image ' ] = [ 'name ' => 'easyengine/nginx: ' . $ img_versions [ ' easyengine/nginx ' ] ];
2324 $ nginx ['restart ' ] = $ restart_default ;
2425
2526 $ v_host = 'VIRTUAL_HOST ' ;
You can’t perform that action at this time.
0 commit comments