Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,6 @@ weblog:
local_path: lib-injection/build/docker/ruby
- name: copy-ruby3_4-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_3_4-alpine
- name: copy-ruby3_3-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_3_3-alpine
- name: copy-ruby3_2-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_3_2-alpine
- name: copy-ruby3_1-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_3_1-alpine
- name: copy-ruby3_0-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_3_0-alpine
- name: copy-ruby2_7-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_2_7-alpine
- name: copy-ruby2_6-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multialpine/Dockerfile.ruby_2_6-alpine
- name: copy-reverseproxy-dockerfile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,6 @@ weblog:
local_path: lib-injection/build/docker/ruby
- name: copy-ruby3_4-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_3_4
- name: copy-ruby3_3-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_3_3
- name: copy-ruby3_2-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_3_2
- name: copy-ruby3_1-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_3_1
- name: copy-ruby3_0-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_3_0
- name: copy-ruby2_7-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_2_7
- name: copy-ruby2_6-app-dockerfile
local_path: utils/build/virtual_machine/weblogs/ruby/test-app-ruby-multicontainer/Dockerfile.ruby_2_6
- name: copy-reverseproxy-dockerfile
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,56 +22,6 @@ services:
healthcheck:
test: "curl -f http://localhost:18080"

ruby_3_3:
env_file: "scenario_app.env"
image: system-tests/ruby_3_3:latest
restart: always
build:
context: .
dockerfile: Dockerfile.ruby_3_3-alpine
healthcheck:
test: "curl -f http://localhost:18080"

ruby_3_2:
env_file: "scenario_app.env"
image: system-tests/ruby_3_2:latest
restart: always
build:
context: .
dockerfile: Dockerfile.ruby_3_2-alpine
healthcheck:
test: "curl -f http://localhost:18080"

ruby_3_1:
env_file: "scenario_app.env"
image: system-tests/ruby_3_1:latest
restart: always
build:
context: .
dockerfile: Dockerfile.ruby_3_1-alpine
healthcheck:
test: "curl -f http://localhost:18080"

ruby_3_0:
env_file: "scenario_app.env"
image: system-tests/ruby_3_0:latest
restart: always
build:
context: .
dockerfile: Dockerfile.ruby_3_0-alpine
healthcheck:
test: "curl -f http://localhost:18080"

ruby_2_7:
env_file: "scenario_app.env"
image: system-tests/ruby_2_7:latest
restart: always
build:
context: .
dockerfile: Dockerfile.ruby_2_7-alpine
healthcheck:
test: "curl -f http://localhost:18080"

ruby_2_6:
env_file: "scenario_app.env"
image: system-tests/ruby_2_6:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,6 @@ http {
upstream ruby_3_4_app {
server ruby_3_4:18080;
}
upstream ruby_3_3_app {
server ruby_3_2:18080;
}
upstream ruby_3_2_app {
server ruby_3_2:18080;
}
upstream ruby_3_1_app {
server ruby_3_1:18080;
}
upstream ruby_3_0_app {
server ruby_3_0:18080;
}
upstream ruby_2_7_app {
server ruby_2_7:18080;
}
upstream ruby_2_6_app {
server ruby_2_6:18080;
}
Expand All @@ -42,26 +27,6 @@ http {
'runtime':'3.4',
'type':'alpine',
'url':'/ruby_3_4/'
},{
'runtime':'3.3',
'type':'alpine',
'url':'/ruby_3_3/'
},{
'runtime':'3.2',
'type':'alpine',
'url':'/ruby_3_2/'
},{
'runtime':'3.1',
'type':'alpine',
'url':'/ruby_3_1/'
},{
'runtime':'3.0',
'type':'alpine',
'url':'/ruby_3_0/'
},{
'runtime':'2.7',
'type':'alpine',
'url':'/ruby_2_7/'
},{
'runtime':'2.6',
'type':'alpine',
Expand All @@ -76,26 +41,6 @@ http {
proxy_pass http://ruby_3_4_app/;
proxy_redirect off;
}
location /ruby_3_3/ {
proxy_pass http://ruby_3_3_app/;
proxy_redirect off;
}
location /ruby_3_2/ {
proxy_pass http://ruby_3_2_app/;
proxy_redirect off;
}
location /ruby_3_1/ {
proxy_pass http://ruby_3_1_app/;
proxy_redirect off;
}
location /ruby_3_0/ {
proxy_pass http://ruby_3_0_app/;
proxy_redirect off;
}
location /ruby_2_7/ {
proxy_pass http://ruby_2_7_app/;
proxy_redirect off;
}
location /ruby_2_6/ {
proxy_pass http://ruby_2_6_app/;
proxy_redirect off;
Expand Down

This file was deleted.

Loading
Loading