added docker functionality

This commit is contained in:
KGT1 2020-09-08 14:02:00 +02:00
parent 3ddfd6a349
commit 617b35d9af
3 changed files with 32 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
node_modules
package-lock.json
config.json

8
DOCKERFILE Normal file
View File

@ -0,0 +1,8 @@
FROM node:12
COPY package.json /app
RUN npm install
COPY . /app
RUN npm run postinstall
CMD npm run start

21
parseENV.js Normal file
View File

@ -0,0 +1,21 @@
const fs = require('fs');
const filename='./config.json';
const configfile = require(filename);
if(!configfile["discord-prefix"])
configfile["discord-prefix"]=process.env.DISCORD_PREFIX;
if(!configfile["token"])
onfigfile["token"]=process.env.DISCORD_TOKEN;
if(!configfile["server-adress"])
configfile["server-adress"]=process.env.JELLYFIN_SERVER_ADDRESS;
if(!configfile["jellyfin-username"])
configfile["jellyfin-username"]=process.env.JELLYFIN_USERNAME;
if(!configfile["jellyfin-password"])
configfile["jellyfin-password"]=process.env.JELLYFIN_PASSWORD;
if(!configfile["jellyfin-app-name"])
configfile["jellyfin-app-name"]=process.env.JELLYFIN_APP_NAME;
fs.writeFile(filename, JSON.stringify(configfile,null,1), (err) => {
if (err) return console.log(err);
});