# ๐Ÿ“ฆ Minimal Requirements & Installation Guide ---- โœ… Minimal Requirements * Docker Compose V2 * Git installed (git --version) ---- # ๐Ÿ” Step-by-Step Installation 1. Clone the repository First, clone the self-hosted Docker Compose setup from our private repository: ```bash git clone https://gitea.phx-erp.de/PHXGMBH/docker-compose-selfhost.git ``` ๐Ÿ” Note: Youโ€™ll be prompted to enter your Gitea credentials (username & password or token) to access the repository. ---- 2. Navigate to the cloned project ```bash cd docker-compose-selfhost ``` ---- 3. Pull the Docker images Run: ```bash docker compose pull ``` ---- 4. Set pgAdmin data folder permissions To ensure pgAdmin can access its persistent storage, run: ```bash sudo chown -R 5050:5050 ./pgadmin/data ``` ---- # ๐Ÿš€ Ready to go Now youโ€™re ready to launch the stack: ```bash docker compose up -d ``` You can access services like pgAdmin, Postgres, Phoenix ERP, and others after containers are running. ----