added panel mgmt

This commit is contained in:
2025-07-01 14:09:27 +02:00
parent 5aca14159b
commit 6bc2fc8bf3
2195 changed files with 146523 additions and 5 deletions
+20 -4
View File
@@ -1,9 +1,9 @@
version: '3.9' version: '3.9'
services: services:
backend: user-mgmt:
container_name: login-page container_name: user-mgmt
build: ./administration/backend build: ./user-mgmt/backend
ports: ports:
- "4000:4000" - "4000:4000"
environment: environment:
@@ -14,7 +14,23 @@ services:
depends_on: depends_on:
- mysql - mysql
volumes: volumes:
- ./backend:/app - ./user-mgmt_backend:/app
restart: unless-stopped
panel-mgmt:
container_name: panel-mgmt
build: ./panel-mgmt/backend
ports:
- "4001:4001"
environment:
DB_HOST: mysql
DB_USER: root
DB_PASSWORD: D7Ze0lwV9hMrNQHdz1Q8yi0MIQuOO8
DB_NAME: login_page
depends_on:
- mysql
volumes:
- ./panel-mgmt_backend:/app
restart: unless-stopped restart: unless-stopped
mysql: mysql:
+1
View File
@@ -0,0 +1 @@
../ejs/bin/cli.js
+1
View File
@@ -0,0 +1 @@
../jake/bin/cli.js
+1
View File
@@ -0,0 +1 @@
../node/bin/node
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More