diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 400434a..a57ac3f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: # - name: Building images run: | - docker-compose build + docker compose build # - name: Create necessary Docker networks # run: | @@ -84,10 +84,10 @@ jobs: echo "Checking the routing and availability of application via Traefik..." timeout 5m bash -c 'while ! curl -fsSLk "https://docuseal.tips-of-mine.com"; do echo "Waiting for the application to be ready..."; sleep 10; done' - - name: Inspect Network Configuration - run: | - docker network inspect back_network - docker network inspect traefik_front_network +# - name: Inspect Network Configuration +# run: | +# docker network inspect back_network +# docker network inspect traefik_front_network - name: Shutdown Docker Compose services if: always()