-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge(release/1.3.0): lostfilm domain, fixes
- Loading branch information
Showing
42 changed files
with
2,120 additions
and
2,050 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
.github | ||
dist | ||
node_modules | ||
venv | ||
out | ||
MonitorrentInstaller | ||
browsers | ||
MonitorrentInstaller/ | ||
browsers/ | ||
tests/ | ||
.clients/ | ||
.artifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,12 @@ RUN npm install | |
COPY . /app | ||
RUN gulp release | ||
|
||
FROM scratch as export | ||
FROM scratch AS export | ||
COPY --from=build /app/monitorrent-*.zip . | ||
|
||
FROM scratch AS mount | ||
COPY . /app | ||
|
||
FROM python:3.9.11-slim-bullseye | ||
MAINTAINER Alexander Puzynia <[email protected]> | ||
|
||
|
@@ -28,7 +31,7 @@ RUN dpkg -i /deb/fonts-ubuntu_0.83-2_all.deb && \ | |
playwright install --with-deps firefox | ||
|
||
# requirements.txt is changed not often and again for caching let's install it first | ||
COPY requirements.txt /var/www/monitorrent/ | ||
COPY ./requirements.txt /var/www/monitorrent/ | ||
RUN pip install --no-cache-dir -r /var/www/monitorrent/requirements.txt && \ | ||
pip install --no-cache-dir PySocks | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
version: "2.1" | ||
services: | ||
qbittorrent: | ||
image: lscr.io/linuxserver/qbittorrent:latest | ||
container_name: qbittorrent | ||
environment: | ||
- PUID=1000 | ||
- PGID=1000 | ||
- TZ=Etc/UTC | ||
- WEBUI_PORT=8080 | ||
volumes: | ||
- ./.clients/qbittorrent/config:/config | ||
- ./.clients/qbittorrent/downloads:/downloads | ||
ports: | ||
- 8080:8080 | ||
- 6881:6881 | ||
- 6881:6881/udp | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.2.4' | ||
__version__ = '1.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.