Manage your entire project lifecycle in one centralized workspace. This platform helps teams coordinate complex workflows without the usual friction. By bringing tasks, communication, and file sharing together, you reduce context switching and keep everyone aligned on shared goals. Visual project tracking allows you to see progress at a glance using Kanban boards, Gantt charts, and calendar views. Automated routine tasks save hours of manual work by triggering actions based on specific conditions. Real-time collaboration ensures that feedback and updates happen instantly, keeping projects moving forward. Customizable dashboards give managers deep insights into team capacity and project health. Whether you are planning a product launch or managing daily operations, the intuitive interface adapts to your specific working style while maintaining enterprise-grade security and reliability.
services:
input:
image: ghcr.io/deck9/input:latest
container_name: input
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DATABASE_URL=${DATABASE_URL}
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
- NEXTAUTH_URL=${NEXTAUTH_URL}
depends_on:
- db
db:
image: postgres:15-alpine
container_name: input_db
restart: unless-stopped
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./db-data:/var/lib/postgresql/dataPOSTGRES_USER=input_user
POSTGRES_PASSWORD=secure_password_here
POSTGRES_DB=input_db
DATABASE_URL=postgresql://input_user:secure_password_here@db:5432/input_db
NEXTAUTH_SECRET=generate_a_secure_random_secret_here
NEXTAUTH_URL=http://localhost:3000Auto-fetched about 19 hours ago
Auto-fetched about 19 hours ago