Consolidate managed service provider operations into a single, open-source platform handling everything from client management to financial tracking. This solution replaces fragmented systems by bringing essential IT workflows together, allowing you to focus on delivering excellent support.\n\nTake advantage of a robust feature set tailored for IT professionals:\n* Client Documentation: Centralize contacts, assets, and key documents.\n* Support Tickets: Create, prioritize, and track support requests.\n* Invoicing: Automate recurring invoices and accept online payments.\n* Password Management: Securely store credentials using AES encryption.\n* AI Integration: Connect with AI models to assist with ticketing.\n* Client Portal: Provide direct access to ticket statuses and invoices.\n\nThe modular design ensures you only use the features you need, making it highly adaptable to your business.
services:
mariadb:
image: mariadb:10.11
container_name: itflow_db
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
MYSQL_DATABASE: ${DB_NAME}
MYSQL_USER: ${DB_USER}
MYSQL_PASSWORD: ${DB_PASSWORD}
volumes:
- ./mariadb_data:/var/lib/mysql
itflow:
image: itflow/itflow:latest
container_name: itflow_app
restart: unless-stopped
ports:
- "8080:80"
depends_on:
- mariadb
environment:
- DB_HOST=mariadb
- DB_NAME=${DB_NAME}
- DB_USER=${DB_USER}
- DB_PASS=${DB_PASSWORD}
volumes:
- ./itflow_data:/var/www/htmlDB_ROOT_PASSWORD=secure_root_password_here
DB_NAME=itflow
DB_USER=itflow_user
DB_PASSWORD=secure_db_password_hereAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago