From 1e7f1a97bebde3c70b881db2bf506fcfd55c5295 Mon Sep 17 00:00:00 2001 From: fal7w <147312030+fal7w@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:18:48 +0300 Subject: [PATCH] Update Deploy_Traefik_and_MariaDB.yml --- .../workflows/Deploy_Traefik_and_MariaDB.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Deploy_Traefik_and_MariaDB.yml b/.github/workflows/Deploy_Traefik_and_MariaDB.yml index 323000d9..ba7ffd07 100644 --- a/.github/workflows/Deploy_Traefik_and_MariaDB.yml +++ b/.github/workflows/Deploy_Traefik_and_MariaDB.yml @@ -58,18 +58,18 @@ jobs: rm -r ~/gitops mkdir ~/gitops - - name: Create traefik.env file - run: | - echo 'TRAEFIK_DOMAIN=${{ vars.TRAEFIK_DOMAIN }}' > ~/gitops/traefik.env - echo 'EMAIL=f.alfalahi@fintechsys.net' >> ~/gitops/traefik.env - echo 'HASHED_PASSWORD='$(openssl passwd -apr1 ${{ vars.TRAEFIK_PASSWORD }} | sed 's/\$/\\\$/g') >> ~/gitops/traefik.env + # - name: Create traefik.env file + # run: | + # echo 'TRAEFIK_DOMAIN=${{ vars.TRAEFIK_DOMAIN }}' > ~/gitops/traefik.env + # echo 'EMAIL=f.alfalahi@fintechsys.net' >> ~/gitops/traefik.env + # echo 'HASHED_PASSWORD='$(openssl passwd -apr1 ${{ vars.TRAEFIK_PASSWORD }} | sed 's/\$/\\\$/g') >> ~/gitops/traefik.env - - name: Docker Compose up for Traefik - run: | - docker-compose --project-name traefik \ - --env-file ~/gitops/traefik.env \ - -f overrides/compose.traefik.yaml \ - -f overrides/compose.traefik-ssl.yaml up -d + # - name: Docker Compose up for Traefik + # run: | + # docker-compose --project-name traefik \ + # --env-file ~/gitops/traefik.env \ + # -f overrides/compose.traefik.yaml \ + # -f overrides/compose.traefik-ssl.yaml up -d - name: Create mariadb.env file run: echo "DB_PASSWORD=${{ vars.MARIADB_PASSWORD }}" > ~/gitops/mariadb.env