File tree 1 file changed +22
-2
lines changed
1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,34 @@ jobs:
16
16
deployAndLoadTest :
17
17
runs-on : ubuntu-latest
18
18
needs : build
19
+ services :
20
+ etherpad1 :
21
+ image : etherpad/etherpad:develop
22
+ ports :
23
+ - " 9001:9001"
24
+ volumes :
25
+ - " ./support/settings.json:/opt/etherpad-lite/settings.json"
26
+ - " ./test1:/opt/etherpad-lite/var"
27
+ etherpad2 :
28
+ image : etherpad/etherpad:develop
29
+ ports :
30
+ - " 9002:9001"
31
+ volumes :
32
+ - " ./support/settings.json:/opt/etherpad-lite/settings.json"
33
+ - " ./test2:/opt/etherpad-lite/var"
34
+ etherpad3 :
35
+ image : etherpad/etherpad:develop
36
+ ports :
37
+ - " 9003:9001"
38
+ volumes :
39
+ - " ./support/settings.json:/opt/etherpad-lite/settings.json"
40
+ - " ./test3:/opt/etherpad-lite/var"
19
41
steps :
20
42
- name : Checkout repository
21
43
uses : actions/checkout@v4
22
44
- uses : actions/download-artifact@v4
23
45
with :
24
46
name : ' etherpad-proxy'
25
- - name : Setup etherpads
26
- run : docker compose up -d
27
47
- name : support 1 pad per instances
28
48
run : sed 's/5/1/g' settings.json.template > settings.json
29
49
- name : check settings
You can’t perform that action at this time.
0 commit comments