Compare commits

...
11 Commits
Author SHA1 Message Date
DragonSlayer_14 49f3146131 Update pgAdmin image and add VS Code settings file
Switched the pgAdmin image in the docker-compose file to use the elestio/pgadmin:latest version for better maintenance and updates. Added an empty `.vscode/settings.json` file to support future editor configuration.
2026-08-24 20:13:13 +02:00
DragonSlayer_14 bb76c0f457 Fix: Passt das mit dem Volume-Name nochmal an... 2026-02-09 23:26:11 +01:00
DragonSlayer_14 e60130b38e Fix: Passt SCRIPT_NAME an 2026-02-09 23:03:44 +01:00
DragonSlayer_14 937cc9cb05 Feat: Fügt SCRIPT_NAME Option hinzu 2026-02-09 23:01:56 +01:00
DragonSlayer_14 0f01469f7a Fix: Passt Namen richtig an 2026-02-09 22:41:20 +01:00
DragonSlayer_14 7c1808b76d Passt Namen des Volumes an 2026-02-09 22:39:23 +01:00
DragonSlayer_14 0108b88eeb Passt persistenten Speicher auf docker-volume an 2026-02-09 22:36:11 +01:00
DragonSlayer_14 db1f1128d8 Stellt .env auf richtige Environment-Variablen um 2026-02-09 22:18:05 +01:00
DragonSlayer_14 39612feae7 Fügt Beispiel-.env hinzu 2026-02-09 22:10:23 +01:00
DragonSlayer_14 8c39a25825 Fügt docker-compose für pgadmin hinzu 2026-02-09 22:10:02 +01:00
DragonSlayer_14 45be2ba81a Fügt gitignore hinzu 2026-02-09 22:09:48 +01:00
3 changed files with 19 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/data
.env
+1
View File
@@ -0,0 +1 @@
{}
+16
View File
@@ -0,0 +1,16 @@
services:
pgadmin:
container_name: pgadmin
image: elestio/pgadmin:latest
restart: unless-stopped
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-admin@example.com}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-changeme}
SCRIPT_NAME: ${SCRIPT_NAME:-}
volumes:
- pgadmin_data:/var/lib/pgadmin:delegated
ports:
- 9440:80
volumes:
pgadmin_data: