-
-
Notifications
You must be signed in to change notification settings - Fork 4
57 lines (46 loc) · 1.73 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: docker-compose
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
pull_request:
paths:
- '.github/workflows/docker-compose.yml'
- 'Dockerfiles/**'
- 'examples/**/docker-compose.yml'
- 'examples/**/integration-test.sh'
- 'examples/integration-test.sh'
jobs:
docker-compose:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: 'docker-compose: main-vhost Static Files'
run: |
cd ./examples/default-vhost__static-files/
./integration-test.sh
- name: 'docker-compose: main-vhost PHP-FPM'
run: |
cd ./examples/default-vhost__php-fpm/
./integration-test.sh
- name: 'docker-compose: main-vhost PHP-FPM (SSL)'
run: |
cd ./examples/default-vhost__php-fpm__ssl/
./integration-test.sh
- name: 'docker-compose: main-vhost Reverse Proxy (NodeJS)'
run: |
cd ./examples/default-vhost__reverse-proxy__node/
./integration-test.sh
- name: 'docker-compose: mass-vhost PHP-FPM (SSL)'
run: |
cd ./examples/mass-vhost__php-fpm__ssl/
./integration-test.sh
- name: 'docker-compose: mass-vhost Reverse Proxy (SSL)'
run: |
cd ./examples/mass-vhost__reverse-proxy__ssl/
./integration-test.sh