mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
feat(docker): replace all-in-one image with FrankenPHP and Caddy based image + discard other images
- use serversideup/php as a base image - remove nginx unit base - remove app / webserver images - add bundle stage to remove pipeline dependency - update docker setup docs - edit gitlabci rules and release logic
This commit is contained in:
parent
49a43d08cc
commit
e5fb676cb6
58 changed files with 5830 additions and 5318 deletions
|
|
@ -677,7 +677,7 @@ class PodcastController extends BaseController
|
|||
|
||||
$episodes = new EpisodeModel()
|
||||
->where('podcast_id', $podcast->id)
|
||||
->where('published_at !=', null)
|
||||
->where('published_at !=')
|
||||
->findAll();
|
||||
|
||||
foreach ($episodes as $episode) {
|
||||
|
|
@ -846,7 +846,7 @@ class PodcastController extends BaseController
|
|||
|
||||
$episodes = new EpisodeModel()
|
||||
->where('podcast_id', $podcast->id)
|
||||
->where('published_at !=', null)
|
||||
->where('published_at !=')
|
||||
->findAll();
|
||||
|
||||
foreach ($episodes as $episode) {
|
||||
|
|
@ -914,7 +914,7 @@ class PodcastController extends BaseController
|
|||
|
||||
$episodes = new EpisodeModel()
|
||||
->where('podcast_id', $podcast->id)
|
||||
->where('published_at !=', null)
|
||||
->where('published_at !=')
|
||||
->findAll();
|
||||
|
||||
foreach ($episodes as $episode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue