Compare commits

..

2 Commits

2 changed files with 3 additions and 20 deletions

View File

@@ -1,22 +1,4 @@
services: services:
caddy:
image: caddy:2.9.1
restart: unless-stopped
cap_add:
- NET_ADMIN
ports:
- "80:80"
- "443:443"
- "443:443/udp"
volumes:
- $PWD/../../bash/caddy:/etc/caddy
- $PWD/../../bash/certs:/etc/ssl
# The "entrypoint" into the application. This reverse proxy
# proxies traffic back to their respective services. If not
# running behind a reverse proxy inject your SSL certificates
# into this container.
# This container runs the actual web app in a php:8.4-fpm
# base container.
app: app:
image: code.caldwell.digital/home/torsearch-app:latest image: code.caldwell.digital/home/torsearch-app:latest
ports: ports:
@@ -48,7 +30,7 @@ services:
- ./downloads/tvshows:/var/download/tvshows - ./downloads/tvshows:/var/download/tvshows
environment: environment:
TZ: America/Chicago TZ: America/Chicago
command: -vvv command: -vv --time-limit=3600 --limit=10
env_file: env_file:
- .env - .env
restart: always restart: always
@@ -68,6 +50,7 @@ services:
- ./downloads/tvshows:/var/download/tvshows - ./downloads/tvshows:/var/download/tvshows
env_file: env_file:
- .env - .env
command: -vv
environment: environment:
TZ: America/Chicago TZ: America/Chicago
restart: always restart: always

View File

@@ -149,7 +149,7 @@ readonly class MonitorTvShowHandler implements HandlerInterface
'monitorType' => 'tvepisode', 'monitorType' => 'tvepisode',
'season' => $episode['season_number'], 'season' => $episode['season_number'],
'episode' => $episode['episode_number'], 'episode' => $episode['episode_number'],
'status' => ['New', 'Active', 'In Progress', 'Complete'] 'status' => ['New', 'Active', 'In Progress']
]) !== null; ]) !== null;
} }
} }