Replies: 1 comment
-
|
I had the same issue and solved it by changing the config.toml Remove this : And replace it by just this : |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Discussed in #364
Originally posted by dtwarogpl July 25, 2022
Hello, Im trying to run podsync from docker container. Have tried almost everything but Im, not able to.
I get same error every time:
time="2022-07-25T12:45:54Z" level=fatal msg="failed to load configuration file" error="1 error occurred:\n\t* data directory is required\n\n"My docker-compose file:
version: '2.2' services: podsync: container_name: podsync image: mxpv/podsync:latest restart: always ports: - 8081:80 volumes: - ./data:/app/data/ - ./config.toml:/app/config.tomlmy configuration:
`# Configure where to store the episode data
[storage]
type = "local"
[storage.local]
data_dir = "/app/data"
[tokens]
youtube = "AIzaSyARXXXXXXXXXXX"
[feeds]
[feeds.ID1]
url = "https://www.youtube.com/channel/UCIXXXXX"
page_size = 5
format = "audio"
clean = { keep_last = 10 }`
Appreciate any help
Beta Was this translation helpful? Give feedback.
All reactions