Add a test and make changez?
Some checks failed
Build and Publish / test (push) Successful in 20s
Build and Publish / build (push) Failing after 5m33s
Build and Publish / notify (push) Successful in 1s

This commit is contained in:
Cody Cook 2025-06-17 20:36:20 -07:00
commit 9e19ae6cf6
5 changed files with 133 additions and 11 deletions

View file

@ -2,13 +2,17 @@ version: '3.8'
services:
app:
# Use either build or image configuration
# For local development:
build:
context: .
dockerfile: Dockerfile
# For Forgejo registry (uncomment and update):
# image: ${FORGEJO_REGISTRY}/${FORGEJO_USERNAME}/podcastrr:latest
# Configuration options:
# Option 1: Use the published Docker image from Forgejo registry (recommended for production)
# Uncomment the image line and comment out the build section
image: ${FORGEJO_REGISTRY}/${FORGEJO_USERNAME}/podcastrr:latest
# Option 2: Build from local Dockerfile (for development)
# Uncomment the build section and comment out the image line
# build:
# context: .
# dockerfile: Dockerfile
ports:
- "${PORT:-5000}:5000"
volumes: