Added support for docker volumes
This commit is contained in:
parent
5955cce3ed
commit
7599732abc
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,8 +5,7 @@ node_modules/
|
||||
minetrack.log
|
||||
|
||||
# minetrack/sqlite3
|
||||
database.sql
|
||||
database.sql-journal
|
||||
data/
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
@ -4,7 +4,7 @@
|
||||
"ip": "0.0.0.0"
|
||||
},
|
||||
"rates": {
|
||||
"pingAll": 3000,
|
||||
"pingAll": 15000,
|
||||
"connectTimeout": 2500
|
||||
},
|
||||
"oldPingsCleanup": {
|
||||
@ -12,7 +12,7 @@
|
||||
"interval": 3600000
|
||||
},
|
||||
"logFailedPings": true,
|
||||
"logToDatabase": false,
|
||||
"logToDatabase": true,
|
||||
"graphDuration": 86400000,
|
||||
"serverGraphDuration": 180000
|
||||
}
|
||||
|
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
@ -4,11 +4,12 @@ const logger = require('./logger')
|
||||
|
||||
const config = require('../config')
|
||||
const { TimeTracker } = require('./time')
|
||||
const dataFolder = 'data/';
|
||||
|
||||
class Database {
|
||||
constructor (app) {
|
||||
this._app = app
|
||||
this._sql = new sqlite.Database('database.sql')
|
||||
this._sql = new sqlite.Database(dataFolder + 'database.sql')
|
||||
}
|
||||
|
||||
getDailyDatabase () {
|
||||
@ -24,7 +25,7 @@ class Database {
|
||||
this._currentDatabaseCopyInstance.close()
|
||||
}
|
||||
|
||||
this._currentDatabaseCopyInstance = new sqlite.Database(fileName)
|
||||
this._currentDatabaseCopyInstance = new sqlite.Database(dataFolder + fileName)
|
||||
this._currentDatabaseCopyFileName = fileName
|
||||
|
||||
// Ensure the initial tables are created
|
||||
|
Loading…
Reference in New Issue
Block a user