Alright, you do in fact need to have the docker file actually start something.

I also swapped the exit command out for a sleep command. It should loop through everything once an hour
This commit is contained in:
2019-12-31 15:21:48 -05:00
parent 9fadc23a5f
commit abb101a8a7
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import sqlalchemy as db
import json
import time
# from manga_py1.parser import Parser
# from manga_py1.info import Info
# from Downloader import my_awesome_handler
@@ -88,7 +89,7 @@ def upload_jason():
while True:
print("1. Download \n 2. Upload\n 3. Exit")
download()
exit()
time.sleep(3600)
# val = input(">>>")
# if val == "1":
# download()