{"id":25860751,"url":"https://github.com/admin404nextfloor/infrastructure-setup-linux-postgresql-pgadmin","last_synced_at":"2026-04-06T09:33:51.033Z","repository":{"id":278430325,"uuid":"934866741","full_name":"admin404nextfloor/Infrastructure-Setup-Linux-PostgreSQL-pgAdmin","owner":"admin404nextfloor","description":"Infrastructure Setup (Linux, PostgreSQL, pgAdmin)","archived":false,"fork":false,"pushed_at":"2025-02-26T06:34:36.000Z","size":1011,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T07:29:28.309Z","etag":null,"topics":["docker","docker-compose","linux","linux-shell","sql","yaml"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/admin404nextfloor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-18T14:31:30.000Z","updated_at":"2025-02-26T06:34:39.000Z","dependencies_parsed_at":"2025-02-26T07:39:43.357Z","dependency_job_id":null,"html_url":"https://github.com/admin404nextfloor/Infrastructure-Setup-Linux-PostgreSQL-pgAdmin","commit_stats":null,"previous_names":["admin404nextfloor/sql","admin404nextfloor/infrastructure-setup-linux-postgresql-pgadmin"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/admin404nextfloor%2FInfrastructure-Setup-Linux-PostgreSQL-pgAdmin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/admin404nextfloor%2FInfrastructure-Setup-Linux-PostgreSQL-pgAdmin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/admin404nextfloor%2FInfrastructure-Setup-Linux-PostgreSQL-pgAdmin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/admin404nextfloor%2FInfrastructure-Setup-Linux-PostgreSQL-pgAdmin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/admin404nextfloor","download_url":"https://codeload.github.com/admin404nextfloor/Infrastructure-Setup-Linux-PostgreSQL-pgAdmin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241435139,"owners_count":19962402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","linux","linux-shell","sql","yaml"],"created_at":"2025-03-01T22:57:26.812Z","updated_at":"2025-12-30T21:26:03.478Z","avatar_url":"https://github.com/admin404nextfloor.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Infrastructure Setup (Linux, PostgreSQL, pgAdmin)\n\n[![Linux](https://img.shields.io/badge/OS-Linux-yellow?logo=linux\u0026style=flat-square)](https://ubuntu.com/)\n[![Docker](https://img.shields.io/badge/Container-Docker-blue?logo=docker\u0026style=flat-square)](https://www.docker.com/)\n[![Docker Compose](https://img.shields.io/badge/Orchestration-Docker--Compose-2496ED?logo=docker\u0026style=flat-square)](https://docs.docker.com/compose/)\n[![PostgreSQL](https://img.shields.io/badge/Database-PostgreSQL-4169E1?logo=postgresql\u0026style=flat-square)](https://www.postgresql.org/)\n[![pgAdmin](https://img.shields.io/badge/Tool-pgAdmin-orange?style=flat-square)](https://www.pgadmin.org/)\n[![Bash](https://img.shields.io/badge/Scripting-Bash-blue?logo=gnu-bash\u0026style=flat-square)](https://www.gnu.org/software/bash/)\n[![SSH](https://img.shields.io/badge/Access-SSH-lightgrey?logo=openssh\u0026style=flat-square)](https://www.openssh.com/)\n\n## Overview\nThis project demonstrates the deployment of PostgreSQL and pgAdmin on a VPS/VDS using Docker Compose. The goal was to automate the installation and configuration process, ensuring a streamlined and efficient setup. The work was carried out according to the planned schedule and successfully completed.\n\n## Features\n- **Automated PostgreSQL \u0026 pgAdmin installation** via Docker Compose.\n- **Infrastructure setup and configuration** for database management.\n- **Secure and customizable** deployment.\n- **Designed for Ubuntu 22.04** \n\n## Installation Guide\n### Step 1: Connect to Your VPS\n```sh\nssh root@your_server_ip\n```\n\n### Step 2: Run the Setup Script\n```sh\nwget -O ./postgres_setup_ubuntu.sh https://raw.githubusercontent.com/admin404nextfloor/SQL/master/postgres_setup_ubuntu.sh \\\n\u0026\u0026 chmod +x postgres_setup_ubuntu.sh \\\n\u0026\u0026 ./postgres_setup_ubuntu.sh\n```\nThis script will:\n- Update system packages\n- Install Docker \u0026 Docker Compose\n- Copy `docker-compose.yml`\n- Set up PostgreSQL and pgAdmin\n- Launch the containers\n\n### Step 3: Access Your Services\n- **PgAdmin**: `http://your_server_ip:5050`\n- **PostgreSQL**: `your_server_ip:5432`\n\n## Default Credentials\n| Service  | Username | Password  |\n|----------|----------|------------|\n| PostgreSQL | postgres  | changeme |\n| PgAdmin | pgadmin4@pgadmin.org | admin |\n\n## How to Connect to PostgreSQL in PgAdmin\n1. Open PgAdmin (`http://your_server_ip:5050`)\n2. Create a new server with:\n   - **Host**: `your_server_ip`\n   - **Port**: `5432`\n   - **Username**: `postgres`\n   - **Password**: `changeme`\n\n## Release Notes\n### v1.0 (February 2025)\n- **Initial Release** 🎉\n- Fully automated PostgreSQL and pgAdmin setup via Docker Compose\n- Tested on Ubuntu 22.04\n- Simplified user experience with preconfigured credentials\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadmin404nextfloor%2Finfrastructure-setup-linux-postgresql-pgadmin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadmin404nextfloor%2Finfrastructure-setup-linux-postgresql-pgadmin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadmin404nextfloor%2Finfrastructure-setup-linux-postgresql-pgadmin/lists"}