From 92be92a9a0ff570028023b421cc391713403965b Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Wed, 6 Sep 2023 01:16:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B8?= =?UTF-8?q?=D0=BB=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/gitea-push-docker.yml | 42 ++++++++++++++++++++++++++ README.md | 17 ++++++++++- 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/gitea-push-docker.yml diff --git a/.gitea/workflows/gitea-push-docker.yml b/.gitea/workflows/gitea-push-docker.yml new file mode 100644 index 0000000..c8b0db2 --- /dev/null +++ b/.gitea/workflows/gitea-push-docker.yml @@ -0,0 +1,42 @@ +name: Create and publish a Docker image + +on: + push: + branches: ['main'] + +env: + REGISTRY: git.zetcraft.ru + IMAGE_NAME: ${{ gitea.repository }} + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ gitea.actor }} + password: ${{ secrets.TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: https://github.com/docker/metadata-action@v4 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/README.md b/README.md index a7fd5d7..46348ed 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,18 @@ # PuskinCardFilmParser -Простой парсер фильмов по акции "пушкинская карта" для кинонео и чарли \ No newline at end of file +Простой парсер фильмов по акции "пушкинская карта" для кинонео и чарли + +### Запуск в Docker + +``` Docker +docker run -d --name PuskinCardFilmParser \ + --restart=always \ + -e TZ='Europe/Moscow' \ + -e API_URL='' \ + git.zetcraft.ru/easytravel/puskincardfilmparser:main +``` + +### Библиотеки + +* [Requests](https://requests.readthedocs.io/en/latest/) +* [BeautifulSoup](https://www.crummy.com/software/BeautifulSoup/)