feat: add script to run docker with volume mounts

This commit is contained in:
2025-06-04 16:11:19 +09:00
parent 3bb26f210a
commit 2cdca4d02d
2 changed files with 14 additions and 1 deletions

10
run-docker.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
# Run Docker container with volume mounts for feed_urls.txt and .env
docker run \
--volume "$(pwd)/feed_urls.txt:/app/feed_urls.txt" \
--volume "$(pwd)/.env:/app/.env" \
--publish 3000:3000 \
--tty \
--interactive \
voice-rss-summary