This commit is contained in:
ChK
2026-03-11 08:44:06 +01:00
1095 changed files with 121741 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ version: "3.9"
services:
# Info
appServerInfo:
image: node:20-alpine
container_name: appServerInfo
@@ -37,4 +37,19 @@ services:
- /home/chk/Documents/appServerInfo/db/init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "5432:5432"
appServerInfoPgadmin:
image: dpage/pgadmin4:latest
container_name: appServer_InfoPgadmin
environment:
PGADMIN_DEFAULT_EMAIL: admin@local.dev
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_CONFIG_SERVER_MODE: 'False'
ports:
- "5050:80"
depends_on:
- appServerInfoDB
volumes:
- /home/chk/Documents/appServerInfo/pgadmin/data:/var/lib/pgadmin
- /home/chk/Documents/appServerInfo/pgadmin/servers.json:/pgadmin4/servers.json
restart: unless-stopped