From dfe8682735d93ea00e8474a306cb00d5d351be5c Mon Sep 17 00:00:00 2001 From: Danila Vershinin Date: Fri, 12 Jul 2024 00:56:17 +0500 Subject: [PATCH] Update Docker run command in test workflow The command to run the docker container in the Github Actions workflow file, 'test-firewalld.yml', has been updated. The '--init' flag was added to the command to ensure that an init process is included. This helps in handling the lifecycle events of the container more gracefully. --- .github/workflows/test-firewalld.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-firewalld.yml b/.github/workflows/test-firewalld.yml index d707256..0dc1477 100644 --- a/.github/workflows/test-firewalld.yml +++ b/.github/workflows/test-firewalld.yml @@ -27,6 +27,7 @@ jobs: # Wait for the container to be fully initialized sleep 10 + docker logs firewalld-container # Run tests inside the container docker exec firewalld-container /bin/bash -c "./firewalld-tests.sh"