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