Add Docker support with Dockerfile and entrypoin
All checks were successful
Docker / build (release) Successful in 7s
All checks were successful
Docker / build (release) Successful in 7s
This commit is contained in:
parent
faf880a236
commit
792f7517e3
9 changed files with 208 additions and 2 deletions
|
|
@ -153,7 +153,7 @@ elif _db_engine == "sqlite":
|
|||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": "django.db.backends.sqlite3",
|
||||
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
|
||||
"NAME": config("DB_PATH", default=os.path.join(BASE_DIR, "db.sqlite3")),
|
||||
"OPTIONS": {
|
||||
"timeout": 10,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue