Add working Dockerfile

This commit is contained in:
Jesse Wierzbinski 2023-11-26 19:30:57 -10:00
parent 8b442c241c
commit 2c82cffb58
No known key found for this signature in database
8 changed files with 27 additions and 15 deletions

View file

@ -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: {