aktaliosieren

This commit is contained in:
ChK
2026-03-11 08:27:05 +01:00
parent 68c2db11d0
commit 98c2485f88
8 changed files with 448 additions and 5 deletions

View File

@@ -11,9 +11,9 @@ services:
- ./checks:/app/checks
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "3000:3000"
- "3030:3000"
depends_on:
- db
- appServerInfoDB
environment:
DB_HOST: db
DB_USER: postgres
@@ -22,7 +22,7 @@ services:
DB_PORT: 5432
restart: unless-stopped
db:
appServerInfoDB:
image: postgres:16-alpine
container_name: info-postgres
restart: unless-stopped
@@ -35,3 +35,19 @@ services:
- ./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