Updated libraries, docker engine version, docker distro version

This commit is contained in:
2023-12-23 23:49:11 +11:00
parent 3c790f51c7
commit 1908413bd2
8 changed files with 326 additions and 276 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ WEB_RESET_ADDRESS=localhost/reset
WEB_PORT=3200 WEB_PORT=3200
WEB_ORIGIN=http://localhost:3001 WEB_ORIGIN=http://localhost:3001
DB_HOSTNAME=database DB_HOSTNAME=localhost
DB_DATABASE=auth DB_DATABASE=auth
DB_USERNAME=auth DB_USERNAME=auth
DB_PASSWORD=charizard DB_PASSWORD=charizard
+1 -1
View File
@@ -1,5 +1,5 @@
FROM node:18-bullseye-slim FROM node:21-bookworm-slim
WORKDIR "/app" WORKDIR "/app"
COPY package*.json /app COPY package*.json /app
RUN npm install --production RUN npm install --production
+3 -4
View File
@@ -55,8 +55,7 @@ const question = (prompt, def = null) => {
//generate the files //generate the files
const ymlfile = ` const ymlfile = `
version: '3' version: '3.8'
services: services:
${appName}: ${appName}:
build: build:
@@ -108,7 +107,7 @@ services:
- ./startup.sql:/docker-entrypoint-initdb.d/startup.sql:ro - ./startup.sql:/docker-entrypoint-initdb.d/startup.sql:ro
traefik_${appName}: traefik_${appName}:
container_name: ${appName}_traefik container_name: ${appName}_traefik
image: "traefik:v2.4" image: "traefik:v2.10"
container_name: "traefik" container_name: "traefik"
command: command:
- "--log.level=ERROR" - "--log.level=ERROR"
@@ -133,7 +132,7 @@ networks:
`; `;
const dockerfile = ` const dockerfile = `
FROM node:18-bullseye-slim FROM node:21-bookworm-slim
WORKDIR "/app" WORKDIR "/app"
COPY package*.json ./ COPY package*.json ./
RUN npm install --production RUN npm install --production
+311 -255
View File
File diff suppressed because it is too large Load Diff
+9 -12
View File
@@ -1,6 +1,6 @@
{ {
"name": "auth-server", "name": "auth-server",
"version": "1.7.11", "version": "1.8.0",
"description": "An API centric auth server. Uses Sequelize and mariaDB by default.", "description": "An API centric auth server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js", "main": "server/server.js",
"scripts": { "scripts": {
@@ -24,18 +24,15 @@
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.3.1", "dotenv": "^16.3.1",
"express": "^4.18.2", "express": "^4.18.2",
"jsonwebtoken": "^9.0.0", "jsonwebtoken": "^9.0.2",
"mariadb": "^3.2.0", "mariadb": "^3.2.3",
"node-cron": "^3.0.2", "node-cron": "^3.0.3",
"node-fetch": "^2.6.11", "node-fetch": "^2.7.0",
"nodemailer": "^6.9.3", "nodemailer": "^6.9.7",
"npm": "^9.7.2", "npm": "^9.9.2",
"sequelize": "^6.32.1" "sequelize": "^6.35.2"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^2.0.22" "nodemon": "^3.0.2"
},
"overrides": {
"semver": "^7.5.2"
} }
} }
+1 -1
View File
@@ -44,7 +44,7 @@ const route = async (req, res) => {
hooks = JSON.parse(process.env.HOOK_POST_VALIDATION_ARRAY); hooks = JSON.parse(process.env.HOOK_POST_VALIDATION_ARRAY);
if (!Array.isArray(hooks)) { if (!Array.isArray(hooks)) {
throw 'isArray() check failed'; throw 'post validation hook isArray() check failed';
} }
//authenticate the hooks //authenticate the hooks
-1
View File
@@ -1 +0,0 @@
ALTER TABLE `accounts` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT;
-1
View File
@@ -1 +0,0 @@
DROP TABLE tokens;