Docker Compose Test (Traefik) #712
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Docker Compose Test (Traefik)" | |
on: | |
pull_request: | |
branches: master | |
push: | |
branches: master | |
schedule: | |
- cron: "0 8 * * *" | |
env: | |
TARGET_SERVICE: traefik | |
TARGET_TIMEOUT: 30 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: "Git: Checkout" | |
uses: actions/checkout@v4 | |
- | |
name: "Service: Setup" | |
run: | | |
cp .github/workflows/config/options.conf "${TARGET_SERVICE}/options.override.conf" | |
- | |
name: "Service: Start" | |
run: | | |
./compositions.sh up --labels NEVER traefik | |
- | |
name: "Service: Wait" | |
run: | | |
cd ${TARGET_SERVICE} ; cat .env | |
sleep ${TARGET_TIMEOUT}s | |
- | |
name: "Service: Test" | |
run: | | |
if ! ./compositions.sh check ${TARGET_SERVICE}; then | |
docker ps | |
cd ${TARGET_SERVICE} ; docker-compose logs | |
exit 1 | |
fi | |
- | |
name: "Service: Restart with labels" | |
run: | | |
./compositions.sh down,up traefik | |
- | |
name: "Service: Wait" | |
run: | | |
sleep ${TARGET_TIMEOUT}s ; sleep ${TARGET_TIMEOUT}s | |
- | |
name: "Service: Test with Traefik" | |
run: | | |
if ! ./compositions.sh check ${TARGET_SERVICE}; then | |
docker ps | |
cd ${TARGET_SERVICE} ; docker-compose logs | |
exit 1 | |
fi | |
cd traefik | |
docker-compose exec -T traefik wget --spider --no-check-certificate https://localhost:9443/dashboard/ \ | |
|| (docker ps ; docker-compose logs ; exit 1) |