From 49f3146131744cd146314263d5074871ef83822f Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Mon, 24 Aug 2026 20:13:13 +0200 Subject: [PATCH] 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. --- .vscode/settings.json | 1 + docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index 688de80..8fd3dbb 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,7 +1,7 @@ services: pgadmin: container_name: pgadmin - image: dpage/pgadmin4:9.12.0 + image: elestio/pgadmin:latest restart: unless-stopped environment: PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-admin@example.com}