mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
Add working Dockerfile
This commit is contained in:
parent
8b442c241c
commit
2c82cffb58
8 changed files with 27 additions and 15 deletions
|
|
@ -14,7 +14,7 @@ export interface ConfigType {
|
|||
host: string;
|
||||
port: number;
|
||||
password: string;
|
||||
database: number;
|
||||
database: number | null;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -159,7 +159,7 @@ export const configDefaults: ConfigType = {
|
|||
host: "localhost",
|
||||
port: 6379,
|
||||
password: "",
|
||||
database: 0,
|
||||
database: null,
|
||||
},
|
||||
},
|
||||
instance: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue