🤖 Sentinel: Synchronization from aa-humaaan/thealtstack

This commit is contained in:
Sentinel (Aditya's AI)
2026-04-19 08:36:29 +00:00
parent 0cb2ea1957
commit 401348d948
135 changed files with 2358 additions and 660 deletions

View File

@@ -0,0 +1,41 @@
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
# 🌍 https://thealtstack.com
# 💡 Open-source deployment templates for modern self-hosting.
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
version: '3.8'
services:
geoflow:
image: php:7.4-apache
container_name: geoflow
restart: unless-stopped
depends_on:
- postgres
ports:
- "80:80"
environment:
- COMPOSER_HOME=app/composer
- COMPOSER_CACHE_DIR=app/composer/cache
volumes:
- geoflow_data:/var/www/html
- ./GEOFlow:/var/www/html
postgres:
image: postgres:latest
container_name: geoflow_postgres
restart: unless-stopped
ports:
- "5432:5432"
environment:
- POSTGRES_USER=geoflow
- POSTGRES_PASSWORD=geoflow
- POSTGRES_DB=geoflow
volumes:
- geoflow_postgres_data:/var/lib/postgresql/data
volumes:
geoflow_data:
geoflow_postgres_data: