# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # 🚀 BUILT & MAINTAINED BY THE ALTSTACK # 🌍 https://thealtstack.com # 💡 Open-source deployment templates for modern self-hosting. # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ version: '3.8' services: appflowy-cloud: image: appflowyinc/appflowy-cloud:latest container_name: appflowy-cloud restart: unless-stopped ports: - "8000:8000" environment: - DATABASE_URL=postgres://appflowy:appflowy@db:5432/appflowy db: image: postgres:14-alpine container_name: appflowy-db restart: unless-stopped environment: - POSTGRES_USER=appflowy - POSTGRES_PASSWORD=appflowy - POSTGRES_DB=appflowy