Add reloading support to Docker container

This commit is contained in:
rubenwardy 2020-01-18 01:38:00 +00:00
parent 095494f96f
commit 077bdeb01c
6 changed files with 11 additions and 5 deletions

View File

@ -25,7 +25,7 @@ from PIL import Image
ALLOWED_RESOLUTIONS=[(100,67), (270,180), (350,233)]
def mkdir(path):
assert(path != "" and path is not None)
assert path != "" and path is not None
if not os.path.isdir(path):
os.mkdir(path)

View File

@ -752,7 +752,7 @@ class PackageRelease(db.Model):
not self.package.checkPerm(user, Permission.APPROVE_RELEASE):
return False
assert(self.task_id is None and self.url is not None and self.url != "")
assert self.task_id is None and self.url is not None and self.url != ""
self.approved = True
return True

View File

@ -121,7 +121,7 @@ def parseForumListPage(id, page, out, extra=None):
if id in out:
print(" - got {} again, title: {}".format(id, title))
assert(title == out[id]['title'])
assert title == out[id]['title']
return False
row = {

View File

@ -46,13 +46,13 @@ def randomString(n):
return ''.join(random.choice(string.ascii_lowercase + \
string.ascii_uppercase + string.digits) for _ in range(n))
assert(os.path.isdir(app.config["UPLOAD_DIR"]), "UPLOAD_DIR must exist")
def doFileUpload(file, fileType, fileTypeDesc):
if not file or file is None or file.filename == "":
flash("No selected file", "error")
return None
assert os.path.isdir(app.config["UPLOAD_DIR"]), "UPLOAD_DIR must exist"
allowedExtensions = []
isImage = False
if fileType == "image":

View File

@ -22,6 +22,8 @@ services:
- 5123:5123
volumes:
- "./data/uploads:/var/cdb/uploads"
- "./app:/source/app"
- "./migrations:/source/migrations"
depends_on:
- db
- redis
@ -35,6 +37,7 @@ services:
- FLASK_CONFIG=../config.cfg
volumes:
- "./data/uploads:/var/cdb/uploads"
- "./app:/home/cdb/app"
depends_on:
- redis

3
utils/reload.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker exec -it contentdb_app_1 sh -c "cp -r /source/* ."