From adb1b76f8f81eb424da93a18848fabd17e033776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 26 Sep 2018 10:47:04 -0400 Subject: [PATCH] Removing my Docker image --- .travis.yml | 26 -------------------------- Dockerfile | 17 ----------------- Dockerfile.amd64 | 1 - Dockerfile.arm64 | 19 ------------------- Dockerfile.armhf | 19 ------------------- README.md | 2 +- 6 files changed, 1 insertion(+), 83 deletions(-) delete mode 100644 .travis.yml delete mode 100644 Dockerfile delete mode 120000 Dockerfile.amd64 delete mode 100644 Dockerfile.arm64 delete mode 100644 Dockerfile.armhf diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 851a0754c..000000000 --- a/.travis.yml +++ /dev/null @@ -1,26 +0,0 @@ -language: bash -sudo: required -services: docker -branches: - only: - - master -env: - global: - - REPO=morpheus65535/bazarr - - QEMU_VERSION=v2.11.0 - - COMMIT=${TRAVIS_COMMIT::8} - - secure: NZ38MZPfDvGRgo9w7Aip6tm/5WVrnm5MWAdokND2ULfCsxkSXVflqVVfiIObkRBkz9vg6YAj4zKtETWZ9HH4K7LXM6NA0/VUb63sP9QjDsJKxFy1a09T2V0b2uRmh5dcC4XURESRXkfJerxj/kXSWF8UiPsU/op2rBtWdTl9jI65imTX8HcCZ52xlBMwDw2TtUP+J5RTAFsvViVl0znTdt+ScK813etokgK3Y3wkZ/TUyc0+F4PYYVeEqZJT3nLAYSO29ubV5gxfbfYCN80Gu1XvRaFB7vPBQBkhgP8CHteV+gPkavBxGgBcFCFEjtp7HlzCpu6XrxL8i/aR8vp8Wn2TrAmoiFTwFc3BZfO66byjS+fVpQzsfW1b2b2Y4M2GwHpTISvZHX3Y95iaCK5nU1eY7lfV2B0MF7J9xsSXLH7GShz/q9/xGRNmUeqp9gT7l0oiJ+2npCm08PL3kqbTNW6CuY3y7vejVS8xLGmkttYUZVZaViksN5JL25ISEMT12u5/GYIMpxKZydA9W+E+yrwoOlim2ENVH6Wae+37rxY68EU75ez+biddGEao7yC8Yg2i8Tf3VfzZyQc0/uJ7o8hXHoo1vUb6qNQzOG/P1ynJy+Bbaa6LrealCeJZWHCha+BnHOIX5IsHibqSkjttpCeiSTliufQ+P6tPqever1M= - - secure: UhaZ3/C0r3vtoVYEmc2YSM/AnWdESmnKq0WzyFtQogL2gQXmLxMIkr1N5W71fGn3FII8HAP1lO3JKHzJXkMjq+pkBZrg5m9FJG+gf+KMYGeQ1nXHForC2q67QuD6A7dL9gZvxoM/Tu0WCHVQcnMJXnXIjvgMeXvXXeOg4x/WEOMuEqb/QfwtksfWifhrrSBPCXTECiDloc4bqRMDEMOKutw+uIdrj4IKtJxhRY8Q/calbSUYwTN1xhlbNzMODfGl6Wkj+8jl+FEtjzPii9UHn5Nh5Sl7Lm+Jp48MqJX8Pg7nC9B4uq3esELxb3zZZjZN6IuTxRKk1Mty1L5qv6MOF7Aum001Gy/JEjEc1oJzCO50wKsAvELiQ9XB68KcBT+qsbb2df+VBp5/mubCmdIp5I/laPVPmbPbwhrtGMG0B28czFZni6Q6qRyiZJL/FC8EY9Yx/+Sei16GjFpNvhiAti+z+Iu5MblbRgta7y8o85yfe26ABctmuJGEPYYUeUnGFH6C5cG/BXX6y4rONWxz0FgYb0pBUuKWqThKEZV+tkfx7kMsprwzLyAx6ZzQGnvOuuTd5zaqbIwquaKcsqyQNrAi0JLaJj43bpVPJqIH9dqYj3Ms3IUSSR9hLnlgGtDwxXodyI6dBGLcs3QCGY5ylSaIYmU0V8YEX4RplMlMiFs= - matrix: - - ARCH=amd64 - - QEMU_ARCH=arm ARCH=armhf - - QEMU_ARCH=aarch64 ARCH=arm64 -script: -- if [ "$ARCH" != "amd64" ]; then curl -L -o qemu-$QEMU_ARCH-static https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-$QEMU_ARCH-static; chmod u+x qemu-$QEMU_ARCH-static; fi -- docker run --rm --privileged multiarch/qemu-user-static:register -- docker build -t $REPO:$COMMIT-$ARCH -f Dockerfile.$ARCH . -after_success: -- docker login -u $DOCKER_USER -p $DOCKER_PASS -- if [ "$ARCH" == "amd64" ]; then docker tag $REPO:$COMMIT-$ARCH $REPO:latest; fi -- docker tag $REPO:$COMMIT-$ARCH $REPO:$ARCH-latest -- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then docker push $REPO; fi diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e9fb54972..000000000 --- a/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM lsiobase/alpine.python:3.7 - -# set python to use utf-8 rather than ascii. -ENV PYTHONIOENCODING="UTF-8" - -VOLUME /tv -VOLUME /movies - -RUN apk add --update git py-pip && \ - git clone https://github.com/morpheus65535/bazarr.git /bazarr - -VOLUME /bazarr/data - -EXPOSE 6767 - -COPY root/ / -CMD ["python", "/bazarr/bazarr.py"] diff --git a/Dockerfile.amd64 b/Dockerfile.amd64 deleted file mode 120000 index 1d1fe94df..000000000 --- a/Dockerfile.amd64 +++ /dev/null @@ -1 +0,0 @@ -Dockerfile \ No newline at end of file diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 deleted file mode 100644 index e5c2491f7..000000000 --- a/Dockerfile.arm64 +++ /dev/null @@ -1,19 +0,0 @@ -FROM lsiobase/alpine.python.arm64:3.7 - -# set python to use utf-8 rather than ascii. -ENV PYTHONIOENCODING="UTF-8" - -ADD qemu-aarch64-static /usr/bin - -VOLUME /tv -VOLUME /movies - -RUN apk add --update git py-pip && \ - git clone https://github.com/morpheus65535/bazarr.git /bazarr - -VOLUME /bazarr/data - -EXPOSE 6767 - -COPY root/ / -CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index 1d251e722..000000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,19 +0,0 @@ -FROM lsiobase/alpine.python.armhf:3.7 - -# set python to use utf-8 rather than ascii. -ENV PYTHONIOENCODING="UTF-8" - -ADD qemu-arm-static /usr/bin - -VOLUME /tv -VOLUME /movies - -RUN apk add --update git py-pip && \ - git clone https://github.com/morpheus65535/bazarr.git /bazarr - -VOLUME /bazarr/data - -EXPOSE 6767 - -COPY root/ / -CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file diff --git a/README.md b/README.md index 4133536e6..b757c3d20 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Be aware that Bazarr doesn't scan disk to detect series and movies: It only take [![Build status](https://travis-ci.org/morpheus65535/bazarr.svg?branch=master)](https://travis-ci.org/morpheus65535/bazarr) [![GitHub issues](https://img.shields.io/github/issues/morpheus65535/bazarr.svg?style=flat-square)](https://github.com/morpheus65535/bazarr/issues) [![GitHub stars](https://img.shields.io/github/stars/morpheus65535/bazarr.svg?style=flat-square)](https://github.com/morpheus65535/bazarr/stargazers) -[![Docker Pulls](https://img.shields.io/docker/pulls/morpheus65535/bazarr.svg?style=flat-square)](https://hub.docker.com/r/morpheus65535/bazarr/) +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/bazarr.svg?style=flat-square)](https://hub.docker.com/r/linuxserver/bazarr/) [![Discord](https://img.shields.io/badge/discord-chat-MH2e2eb.svg?style=flat-square)](https://discord.gg/MH2e2eb) # Support