#!/bin/bash # 🚀 Auto-generated by The AltStack # https://thealtstack.com echo "🔵 Starting AltStack Deployment..." # 1. Check/Install Docker if ! command -v docker &> /dev/null; then echo "📦 Docker not found. Installing..." curl -fsSL https://get.docker.com -o get-docker.sh sh get-docker.sh rm get-docker.sh echo "✅ Docker installed." else echo "✅ Docker is already installed." fi # 2. Setup Directory APP_DIR="twenty-deploy" mkdir -p $APP_DIR cd $APP_DIR echo "📂 Created directory: $APP_DIR" # 3. Create docker-compose.yml echo "📄 Writing configuration..." cat << 'INNER_EOF' > docker-compose.yml # ------------------------------------------------------------------------- # 🚀 Created and distributed by The AltStack # 🌍 https://thealtstack.com # ------------------------------------------------------------------------- version: '3.8' services: twenty: image: twentyhq/twenty:latest container_name: twenty restart: unless-stopped depends_on: - db ports: - "3000:3000" environment: - PG_DATABASE_URL=postgres://twenty:twenty@db:5432/twenty - FRONTEND_URL=http://localhost:3000 db: image: postgres:15-alpine container_name: twenty-db restart: unless-stopped environment: - POSTGRES_USER=twenty - POSTGRES_PASSWORD=twenty - POSTGRES_DB=twenty volumes: - twenty_db_data:/var/lib/postgresql/data volumes: twenty_db_data: INNER_EOF # 4. Start Services echo "🚀 Starting services..." docker compose up -d echo "" echo "✅ Deployment Complete!" echo "👉 Your twenty stack is running."