15 lines
380 B
Bash
Executable File
15 lines
380 B
Bash
Executable File
#!/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" \
|
|
--volume "$(pwd)/public:/app/public" \
|
|
--volume "$(pwd)/data:/app/data" \
|
|
--publish 3000:3000 \
|
|
--publish 3001:3001 \
|
|
--name voice-rss-summary \
|
|
-d \
|
|
--restart always \
|
|
voice-rss-summary
|