mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-23 17:25:14 +02:00
🤖 Sentinel: Synchronization from aa-humaaan/thealtstack
This commit is contained in:
41
docker-deploy/geoflow/docker-compose.yml
Normal file
41
docker-deploy/geoflow/docker-compose.yml
Normal 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:
|
||||
Reference in New Issue
Block a user