test
This commit is contained in:
parent
6ecac75bc9
commit
f944e31ce0
@ -48,14 +48,12 @@ jobs:
|
|||||||
image: mongo:4.2
|
image: mongo:4.2
|
||||||
ports:
|
ports:
|
||||||
- 27017:27017
|
- 27017:27017
|
||||||
options: --health-cmd='mongo --eval "db.adminCommand(\"ping\")"' --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
maildev:
|
maildev:
|
||||||
image: gitbase.de/robin/maildev:latest
|
image: gitbase.de/robin/maildev:latest
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
- 25:25
|
- 25:25
|
||||||
options: --health-cmd='curl -f http://localhost:80' --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
tibi-server:
|
tibi-server:
|
||||||
image: gitbase.de/cms/tibi-server
|
image: gitbase.de/cms/tibi-server
|
||||||
@ -68,13 +66,11 @@ jobs:
|
|||||||
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
SECURITY_ALLOWABSOLUTEPATHS: "true"
|
||||||
SECURITY_ALLOWUPPERPATHS: "true"
|
SECURITY_ALLOWUPPERPATHS: "true"
|
||||||
SECURITY_ALLOWRELATIVEPATHS: "true"
|
SECURITY_ALLOWRELATIVEPATHS: "true"
|
||||||
options: --health-cmd='curl -f http://localhost:8080' --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
live-server:
|
live-server:
|
||||||
image: gitbase.de/robin/live-server:latest
|
image: gitbase.de/robin/live-server:latest
|
||||||
ports:
|
ports:
|
||||||
- 8081:8081
|
- 8081:8081
|
||||||
options: --health-cmd='curl -f http://localhost:8081' --health-interval=10s --health-timeout=5s --health-retries=3
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -89,6 +85,18 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
entrypoint: echo
|
entrypoint: echo
|
||||||
args: "dastest"
|
args: "dastest"
|
||||||
|
- name: check docker networking infos
|
||||||
|
run: |
|
||||||
|
echo "${{ toJson(job) }}"
|
||||||
|
echo "${{ github }}"
|
||||||
|
docker network ls
|
||||||
|
docker network inspect bridge
|
||||||
|
docker network inspect host
|
||||||
|
docker network inspect none
|
||||||
|
docker network inspect container:${{ job.services.tibi-server.id }}
|
||||||
|
docker network inspect container:${{ job.services.live-server.id }}
|
||||||
|
docker network inspect container:${{ job.services.mongo.id }}
|
||||||
|
docker network inspect container:${{ job.services.maildev.id }}
|
||||||
|
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
env:
|
env:
|
||||||
|
Loading…
Reference in New Issue
Block a user